Skip to content

Instantly share code, notes, and snippets.

@benek
Created November 23, 2011 06:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benek/1388008 to your computer and use it in GitHub Desktop.
Save benek/1388008 to your computer and use it in GitHub Desktop.
Un básico "Hola Mundo" en Processing.
void setup() {
size(1024, 768);
smooth();
}
void draw(){
if (mousePressed) {
fill(0);
} else {
fill(255);
}
ellipse(mouseX, mouseY, 80, 80);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment