PFont font;
int fontsize = 90;
float angleRotate = 0.0;
String s = "YOU ARE\n WORTHY\n OF LOVE";
void setup() {
size(1920, 1920, P3D);
frameRate(60);
font = loadFont("CenturyGothic-255.vlw");
// Set text characteristics
textFont(font);
textAlign(CENTER, CENTER);
}
void draw() {
background(angleRotate/360*255);
textSize(fontsize+angleRotate/360*100);
strokeWeight(4);
stroke(100, angleRotate/360255, angleRotate/360255);
push();
translate(width/2, height/2, -height);
rotate(radians(angleRotate));
text(int(angleRotate) % 360, 0, 0, angleRotate/360*height);
text(" "+s+" ", fontsize0.4s.length(), 0, angleRotate/360*height);
line(0, 0, fontsize0.4s.length(), 0);
pop();
angleRotate += 0.25;
stroke(255, 0, 0);
strokeWeight(8);
point(width/2, height/2);
saveFrame("fr/line-######.png");
}