float s = 50; void setup() { size(400, 400); } void draw() { background(255); s = s + random(-3, 3); ellipse(width/2, height/2, s, s); }