PFont myFont;
void setup() {
size(1200, 1200);
// Uncomment the following two lines to see the available fonts
//String[] fontList = PFont.list();
//printArray(fontList);
myFont = createFont(".SFNS-Bold", 125);
frameRate(30);
rectMode(CENTER);
}
void draw(){
float text = 5;
int s = second();
scale(12, 1);
scale(500 + 200 * sin(s * text *4),text,50 + 40 * sin(s));
fill(255);
textSize (124 );
text(βDβ,0,500);
}