float r; float g; float b; float a; float diam; float x; float y; void setup() { size(600,100); background(0); smooth(); frameRate(30); } void draw() { //Fill all variables with random values r = random(255); g = random(255); b = random(255); a = random(255); diam = random(10,20); x = random(width); y = random(height); //Use those variables to draw an ellipse fill(r,g,b,a); ellipse(x,y,diam,diam); PFont font; font = loadFont("Ziggurat.vlw"); textFont(font); text("AnthroYeti",250,50); } void keyPressed() { background(0); }