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 ...