Created
December 10, 2011 23:37
-
-
Save netdesign/1457076 to your computer and use it in GitHub Desktop.
Esempio Uno
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
| void setup(){ | |
| size(640, 360); | |
| } | |
| void draw(){ | |
| background(0); | |
| point(100, 100); // La posizione del punto viene dichiarata all'interno della funzione point | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment