//Michael schmitz 2003 float rx; float ry; void setup() { size(400,400); background(255,255,255); rectMode(CENTER_DIAMETER); } void loop() { //reset background background(255,255,255); //linie for(int i=0; i<8000;i++){ rx = random(0,mouseX); ry = random(0, mouseX); noStroke(); fill(0,0,0); rect(rx,ry,5,5); } }