xxxxxxxxxx
63
function setup() {
createCanvas(400, 400);
}
function draw() {
background(208, 244, 245);
//hair
noStroke ();
fill(132, 98, 80);
ellipse(200, 190, 240, 260,30);
fill(255,255,0)
stroke(25)
noStroke();
fill(132, 98, 80);
rect(80, 190, 240, 180,15)
//head and neck
stroke('black')
fill(232, 204, 160)
ellipse(200, 200, 185, 220);
rect(172, 306, 60,30)
//eyes
fill('white')
ellipse(160, 190, 40, 30);
fill('white')
ellipse(240, 190, 40, 30);
fill('black')
ellipse(160, 190, 25, 25);
fill('black')
ellipse(240, 190, 25, 25);
fill('white')
ellipse(165, 185, 5, 5);
ellipse(245, 185, 5, 5);
//nose
fill(232, 204, 160)
ellipse(200, 220, 23, 18);
//shirt/shoulders
fill('#f5cbf5')
rect(115, 335, 180, 100, 30);
line(155, 380, 155, 500);
line(255, 380, 255, 400);
//lips
fill(222, 170, 160);
arc(200, 260, 47, 35,0, 3*PI);
arc(200, 260, 40, 13, PI, 2*PI);
line(175, 260, 225, 260);
}