xxxxxxxxxx
70
function setup() {
createCanvas(600, 600);
}
function draw() {
background("lightpink")
fill("black")
rect(95, 110, 455, 519, 150);//hair
fill("rgb(214,184,141)")
strokeWeight(0)
circle(320,350,400)//face
rect(275,520,80,100)//neck
arc(526, 355, 50, 50, 30, HALF_PI);//right ear
fill("black")
rect(135, 140, 335, 115, 150);//front hair
fill("blue")
rect(235,590,156,40)//shirt
fill("white")
ellipse(410,350,90,60)//outer eye
fill("rgb(97,55,55)")
circle(410,350,40)//eyeColor
fill("white")
circle(416,340,20)//shineIneyeColor
fill("white")
ellipse(210,350,90,60)//outer eye
fill("rgb(97,55,55)")
circle(210,350,40,)//eyeColor
fill("white")
circle(216,340,20)//shineIneyeColor
fill("rgb(199,171,131)")
line(210,385,150,122)//nose
arc(315, 390, 80, 80, 3, 180)
fill("rgb(97,55,55)")
rect(190, 275, 63, 10)//eyebrows
fill("rgb(97,55,55)")
rect(350, 275, 63, 10)//eyebrows
fill("black")
arc(300, 450, 80, 80, 0, PI, OPEN);//mouth
}