void setup() { size(300, 200); textFont(createFont("Arial", 20)); stroke(128); fill(140); } void draw() { background(255); text("(" + mouseX + ", " + mouseY + ")", 10, 20); ellipse(pmouseX, pmouseY, mouseX, mouseY); }