void setup() { size(400, 400); } void draw() { background(230); // circle follows the mouse exactly ellipse(mouseX, mouseY, 30, 30); }