This very simple program just draws a circle at the location of the mouse cursor.

This browser does not have a Java Plug-in.
Get the latest Java Plug-in here.

Code void setup() { size(200,200); background(0); } void draw() { stroke(255); fill(0); ellipse(mouseX,mouseY,30,30); }