Drawing Some Random Ellipse With Different Colors on Processing
void setup () {
size (600,600);
smooth ();
noFill ();
strokeWeight(5);
frameRate (10);
}
void draw () {
float x = random(width);
float y = random (height);
float d = random (30,300);
stroke (random(255), random (201), random (120));
ellipse (x, y, d, d);
}