void setup() { size(200, 200); background(0); stroke(255); noFill(); frameRate(10); } void draw() { float x = random(width); float y = random(height); float s = random(20, 50); //fill(255, 0, 0, 127); // Rote, halbtransparente Kreise ellipse(x, y, s, s); }