// Laurent Doucet, Erg, 2007. // http://www.workplace.lescorsaires.be/spritek/ void setup() { size(400, 400); frameRate(5); noStroke (); } void draw() { float r= random(0,255); float g= random(0,255); float b= random(0,255); float x= random(0,400); float y= random(0,400); float s= random(2,24); background (r,g,b); ellipse (x,y,width/s, height/s); fill (b,g,r); }