Created
August 12, 2015 17:16
-
-
Save federico-pepe/7fb6dbc94396a3b375f1 to your computer and use it in GitHub Desktop.
Blocchi di codice e flusso: setup() e draw()
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(500, 500); | |
| } | |
| void draw() { | |
| background(0); | |
| 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