void setup() { size(200, 200); background(255); colorMode(HSB, 360, 100, 100); noStroke(); smooth(); frameRate(10); } void draw() { fill(random(0, 75), 80, 100); translate(random(width), random(height)); rotate(radians(random(15, 75))); ellipse(0, 0, 10, 40); }