Skip to content

Instantly share code, notes, and snippets.

@federico-pepe
Created August 12, 2015 17:22
Show Gist options
  • Select an option

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

Select an option

Save federico-pepe/a14cca0ff8b1862d2db2 to your computer and use it in GitHub Desktop.
Blocchi di codice e flusso: setup() e draw()
void setup() {
size(500, 500);
background(0);
}
void draw() {
fill(255, 0, 0);
ellipse(mouseX, mouseY, 150, 150);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment