Skip to content

Instantly share code, notes, and snippets.

@timturnidge
Last active September 28, 2020 03:45
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 timturnidge/0c92c07989e36ba6a3c6342b900ec129 to your computer and use it in GitHub Desktop.
Save timturnidge/0c92c07989e36ba6a3c6342b900ec129 to your computer and use it in GitHub Desktop.
void setup() {
size(500, 500);
background(255);
noStroke();
fill(255, 0, 0);
ellipse(125, 250, 200, 200);
fill(0, 255, 0);
ellipse(250, 250, 200, 200);
fill(0, 0, 255);
ellipse(375, 250, 200, 200);
}
void draw() {
}
@timturnidge
Copy link
Author

screen shot 2019-01-30 at 11 14 53 am

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment