xxxxxxxxxx
55
function setup() {
createCanvas(500, 500);
}
function draw() {
background(240);
//face
fill(242, 227, 182);
noStroke();
rect(160,125,160,170,20),20;
arc(240,275,160,70,0,PI);
//hair
fill(43, 42, 39);
noStroke();
rect(160,125,160,50,20,20,0,0);
//eyes, sclera
fill(255,255,255);
strokeWeight(1);
stroke(0);
ellipse(200,200,20,30);
ellipse(270,200,20,30);
//eyes, irises
fill(0,0,0);
noStroke();
ellipse(200,207,10,15);
ellipse(270,207,10,15);
//mouth
fill(219, 99, 159);
arc(237, 270, 49, 35, 0, PI);
//nose
fill(247, 221, 155);
strokeWeight(1)
stroke(0);
triangle(235, 240, 240, 220, 245, 240);
//neck
fill(242, 227, 182);
noStroke();
ellipse(240,312,30,30);
//clothes
fill(239, 182, 242);
arc(240, 420, 130, 200, QUARTER_PI + HALF_PI, QUARTER_PI, OPEN);
//tie
fill(0,0,0);
triangle(230,322,250,322,240,380);
}