Last active
September 25, 2018 13:03
-
-
Save memish/1548dc6ccdf4e0de19a21c6c29635a58 to your computer and use it in GitHub Desktop.
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
| int num = 0; | |
| void setup(){ | |
| size(600,400); | |
| } | |
| void draw(){ | |
| background(0); | |
| fill(255); | |
| //text("Hello, World",20,30); | |
| //fill(255,0,0); | |
| //rect(num,200,100,100); | |
| //ellipse(56, 46, 55, 55); | |
| //num++; | |
| //print(num); | |
| } | |
| void mousePressed() { | |
| println(mouseX + " " + mouseY); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment