Skip to content

Instantly share code, notes, and snippets.

@bogoreh
Created March 12, 2021 12:49
Show Gist options
  • Save bogoreh/997e81fd5591463d9cc8334d2159d7c6 to your computer and use it in GitHub Desktop.
Save bogoreh/997e81fd5591463d9cc8334d2159d7c6 to your computer and use it in GitHub Desktop.
// simple snowman
ellipse(200, 300, 150, 150);
ellipse(200, 200, 100, 100);
ellipse(200, 120, 75, 75);
//hat
fill(0, 0, 0);
rect(160,20,55,70);
rect(155,60,90,30);
//eyes
ellipse(185,115,10,10);
ellipse(215,215,10,10);
//noise
fill(255, 111, 0);
triangle(200, 120, 200, 130, 180, 130);
//buttons
fill(27, 51, 148);
ellipse(200,190,20,20);
ellipse(200,220,20,20);
ellipse(200,280,20,20);
ellipse(200,320,20,20);
//hands
line(150,200,60,190);//right hand
line(250,200,320,190);//left hand
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment