Skip to content

Instantly share code, notes, and snippets.

@nataliefreed
Created September 3, 2014 02:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nataliefreed/5532ba695e62c0a550be to your computer and use it in GitHub Desktop.
Save nataliefreed/5532ba695e62c0a550be to your computer and use it in GitHub Desktop.
Displays cursor location in Processing
void setup()
{
size(400, 400);
}
void draw()
{
background(255);
fill(0);
text(mouseX + "," + mouseY, 10, 20);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment