Skip to content

Instantly share code, notes, and snippets.

@timturnidge
Created January 29, 2019 23:40
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/6b51f136270615eb717df973320914df to your computer and use it in GitHub Desktop.
Save timturnidge/6b51f136270615eb717df973320914df to your computer and use it in GitHub Desktop.
void setup() {
size(500, 500);
}
void draw() {
background(255);
noStroke();
fill(0);
ellipse(160, 170, 100, 100);
ellipse(340, 170, 100, 100);
stroke(0);
strokeWeight(10);
fill(255);
ellipse(250, 250, 200, 200);
noStroke();
fill(0);
ellipse(215, 235, 50, 100);
ellipse(285, 235, 50, 100);
fill(255);
ellipse(215, 220, 10, 10);
ellipse(285, 220, 10, 10);
fill(0);
triangle(215, 300, 285, 300, 250, 315);
stroke(0);
strokeWeight(5);
line(245, 325, 255, 325);
}
@timturnidge
Copy link
Author

screen shot 2019-01-30 at 12 17 42 pm

@timturnidge
Copy link
Author

screen shot 2019-01-30 at 12 41 27 pm

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