Skip to content

Instantly share code, notes, and snippets.

@lonnen
Created December 13, 2010 04:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lonnen/738650 to your computer and use it in GitHub Desktop.
Save lonnen/738650 to your computer and use it in GitHub Desktop.
// simple.pde
void setup() {
size(400, 400);
stroke(255);
}
void draw() {
background(192, 64, 0);
line(150, 25, mouseX, mouseY);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment