xxxxxxxxxx
37
function setup() {
createCanvas(400, 400);
}
function draw() {
background(153, 204, 255);
//hair
fill (0)
ellipse (200, 200, 210, 300)
// face
fill (255, 178, 102)
ellipse (200, 200, 150, 170)
// first eye
fill(255)
ellipse (170, 170, 30, 15)
fill (0)
ellipse (170, 170, 10, 10)
// second eye
fill (255)
ellipse (230, 170, 30, 15)
fill (0)
ellipse (230, 170, 10, 10)
fill (255, 204, 153)
triangle (190, 200, 200, 160, 210, 200 )
ellipse (200, 230, 30, 10)
}