void setup() { size(400, 400); noStroke(); background(255); smooth(); // Zufällige Anfangsfarbe fill(random(255), random(255), random(255), 127); } void draw() { // Farbe ändern, wenn Maus geklickt wird. if (mousePressed) { fill(random(255), random(255), random(255)); } float s = random(2, 15); ellipse(mouseX + random(-20, 20), mouseY + random(-20, 20), s, s); }