float cof = 75.0; int x =0; void setup() { size(500,500); background(0); textSize(25); }
void draw() { background(0); text( "word",250 +cos(x)*cof,250+sin(x)*cof); x++; delay(100); }