void setup() { size(400, 300); fill(0); smooth(); noStroke(); } void draw() { background(255); ellipse(mouseX, mouseY, 10, 10); }