Skip to content

Instantly share code, notes, and snippets.

@timturnidge
Created July 23, 2019 04:42
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/f5639df46223ad8a26b613f68571b505 to your computer and use it in GitHub Desktop.
Save timturnidge/f5639df46223ad8a26b613f68571b505 to your computer and use it in GitHub Desktop.
void setup() {
size(500, 500);
}
void draw() {
background(255);
stroke(0);
strokeWeight(5);
line(125, 300, 375, 320);
line(125, 320, 375, 300);
noStroke();
fill(0);
ellipse(125, 125, 100, 100);
ellipse(375, 125, 100, 100);
fill(255);
stroke(0);
strokeWeight(10);
triangle(125, 125, 375, 125, 250, 375);
noStroke();
fill(0);
ellipse(250, 375, 50, 50);
ellipse(200, 200, 20, 20);
ellipse(300, 200, 20, 20);
}
@timturnidge
Copy link
Author

mouse-guide

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