void draw() { // Seleciona a fonte Arial background(0); textFont(createFont("Arial", 15)); text("mouseX =", 10, 20); text(mouseX, 10, 40); text("mouseY =", 10, 60); text(mouseY, 10, 80); }