Skip to content

Instantly share code, notes, and snippets.

@netdesign
Created December 10, 2011 23:37
Show Gist options
  • Select an option

  • Save netdesign/1457076 to your computer and use it in GitHub Desktop.

Select an option

Save netdesign/1457076 to your computer and use it in GitHub Desktop.
Esempio Uno
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