Created
August 19, 2015 11:01
-
-
Save federico-pepe/fbaa1a3d40f990587e4b to your computer and use it in GitHub Desktop.
Drawing Tool
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * 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