Skip to content

Instantly share code, notes, and snippets.

@federico-pepe
Created August 19, 2015 11:01
Show Gist options
  • Select an option

  • Save federico-pepe/fbaa1a3d40f990587e4b to your computer and use it in GitHub Desktop.

Select an option

Save federico-pepe/fbaa1a3d40f990587e4b to your computer and use it in GitHub Desktop.
Drawing Tool
/*
* Drawing Tool
* by Federico Pepe
* http://blog.federicopepe.com
*/
void setup() {
size(700, 700);
background(0);
}
void draw() {
stroke(255);
line(pmouseX, pmouseY, mouseX, mouseY);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment