//// Wild circles #0. float x=width/2,y=height/2; float r=255 , g=0, b=150; int counter= 0; // Setup: screen size. // void setup() { size(400, 400); // Try changing the width & height. } // Next frame: circle at (x,y). // void draw() { background(200,150,100); fill (r,g,b); triangle(x+10,y+30,100,120,150,150); ellipse( x,y, x-2,30 ); // Try changing the (x,y) and size. x= x + 0.25; y= y + 0.125; counter= counter+1; if (counter >50) {r = random(0,255); b= random(0,255);} if (keyPressed == true) {exit();} //exits program }