// alpha not displayed correctly, as long as background() not specified void setup() { size(400,400); //background(128); noStroke(); } void draw() { fill(0,10); ellipse(mouseX, mouseY, 10, 10); }