xxxxxxxxxx
59
function setup() {
createCanvas(1192, 770);
}
function draw() {
//base color of the background
background (118, 142, 142);
//(x, y, size)
//square for the shape of the neck
//make color slightly darker for shadows
fill (248,203,187)
square (820, 340, 57)
//circle for the face shape
fill (248,203,187)
circle (840, 325, 80)
//two ellipses for the hat
//(x, y, w, h)
//ellipse 1 - top of hat
fill (255)
ellipse (840, 280, 85, 30)
//ellipse 2 - base of the hat
fill (255)
ellipse (840, 298, 150, 27)
//skirt - dress
beginShape()
vertex (438, 482)
vertex (546, 723)
vertex (712, 546)
endShape()
//rect - torso
rect (780, 387, 120, 125)
//
beginShape();
// Add vertices.
vertex(780, 510);
vertex(900, 510);
vertex(600, 650);
vertex(460, 530);
// Stop drawing the shape.
endShape(CLOSE);
line(880,0,600,650);
line(1100,0,780,650)
}