xxxxxxxxxx
44
function setup() {
createCanvas(500, 700);
background(100);
fill(0, 255, 0);
strokeWeight(0);
rect(0, 500, width, 200);
//snowman
fill(255);
ellipse(250, 500, 200, 200);
ellipse(250, 375, 150, 150);
ellipse(250, 275, 100, 100);
//hat
fill(0);
rect(215, 140, 70, 100);
ellipse(250, 240, 100, 10);
//eyes
ellipse(235, 265, 5, 5);
ellipse(265, 265, 5, 5);
//carrot
fill(255, 165, 0);
triangle(250, 275, 250, 285, 290, 300);
//arms
stroke(139, 69, 19);
strokeWeight(5);
line(180, 375, 100, 350);
line(320, 375, 400, 350);
//scarf
strokeWeight(0);
fill(0, 0, 255);
rect(205,300, 90, 20);
rect(205, 300, 20, 80);
//buttons
fill(0);
ellipse(250, 340, 7, 7);
ellipse(250, 370, 7, 7);
ellipse(250, 400, 7, 7);
}