// Dartmouth CS 2, Winter 2009, Chris Bailey-Kellogg // Notes 2 | Sketch 3 size(300,200); smooth(); background(0,51,153); noStroke(); fill(51,255,255); ellipse(130,40,40,40); // head fill(255,255,51); ellipse(130,90,70,70); // torso fill(153,255,51); ellipse(130,160,90,90); // legs? stroke(0); strokeWeight(5); point(125,35); // left eye point(135,35); // right eye strokeWeight(1); fill(255,153,102); stroke(255,153,102); triangle(130,40,140,45,130,45); // nose fill(255,51,204); noStroke(); rect(110,20,40,5); // top hat rect(120,0,20,20); stroke(204,153,255); line(100,90,60,50); // right arm line(60,50,65,40); // right hand line(60,50,57,35); line(60,50,50,48); line(158,76,200,53); // left arm line(200,53,200,42); // left hand line(200,53,210,65); fill(255); textFont(loadFont("TrebuchetMS-24.vlw")); text("Let it snow!",155,25);