Skip to content

Instantly share code, notes, and snippets.

@garraflavatra
Created December 8, 2017 16:58
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 garraflavatra/0341ef763f16c271b50dfa703c97cfb2 to your computer and use it in GitHub Desktop.
Save garraflavatra/0341ef763f16c271b50dfa703c97cfb2 to your computer and use it in GitHub Desktop.
Ellipse drawing
void setup() {
size(480, 120);
}
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