snowman

// snowman

function setup() {
  var cnv = createCanvas(400, 400);
  cnv.position(24, 160);
} //setup

function draw() {
  background(64);

  fill(0, 255, 0);
  ellipse(200, 80, 100, 140); // hat top

  stroke(64);
  fill(0, 255, 0);
  ellipse(200, 75, 220, 60); // hat rim

  stroke(255);
  fill(255);
  ellipse(200, 300, 250, 250); // body
  ellipse(200, 130, 150, 150); // head

  stroke(255, 0, 0);
  fill(255, 0, 0);
  ellipse(200, 165, 2*30, 10); //mouth

  stroke(0);
  fill(0);
  ellipse(200-25, 120, 20, 20); // left eye
  ellipse(200+25, 120, 20, 20); // right eye
  ellipse(200, 250, 20, 20); // upper button
  ellipse(200, 300, 20, 20); // lower button

  fill(255, 127, 0);
  ellipse(200, 140, 20, 20); // nose

} //draw