Skip to content

Instantly share code, notes, and snippets.

@nickjiunchetti
Created February 12, 2019 22:05
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 nickjiunchetti/e3cbfbd2fcff443d36803381ac1433c1 to your computer and use it in GitHub Desktop.
Save nickjiunchetti/e3cbfbd2fcff443d36803381ac1433c1 to your computer and use it in GitHub Desktop.
devil snowman
background(0, 0, 0);
// The ground
fill(255, 0, 0);
rect(0, 300, 400, 100);
// The sun
fill(184, 51, 51);
ellipse(80, 64, 100, 100);
// The snowman
fill(10, 10, 10);
ellipse(200, 300, 150, 150);
ellipse(200, 200, 100, 100);
ellipse(200, 120, 75, 75);
//smile
fill(255,255,255);
ellipse(200,134,32,15);
//delete half elipse
fill(10, 10, 10);
stroke(10, 10, 10);
ellipse(200,130,32,11);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment