xxxxxxxxxx
57
function setup() {
createCanvas(500, 500);
}
function draw() {
background("#7F00FF");
//neck
fill("#876127");
rect(208, 300, 80, 110);
//hair
fill("black");
ellipse(250, 190, 220, 200);
//ears
fill("#876127");
ellipse(175, 264, 30, 40);
ellipse(325, 264, 30, 40);
//face
fill("#876127");
rect(175, 210, 150, 150, 0, 0, 100, 100);
//eyes
fill(220);
ellipse(210, 260, 35, 28);
fill(0, 0, 0);
ellipse(210, 260, 15, 15);
fill(220);
ellipse(290, 260, 35, 28);
fill(0, 0, 0);
ellipse(290, 260, 15, 15);
//nose
stroke(1);
fill("#7c501a");
arc(250, 277, 40, 40, QUARTER_PI, HALF_PI + QUARTER_PI);
//mouth
stroke(1);
fill("#7c501a");
ellipse(250, 320, 55, 30);
line(277, 320, 222, 320);
//body
fill("orange");
rect(100, 390, 300, 200, 300, 300, 0, 0);
//arms
line(160, 460, 160, 500);
line(340, 460, 340, 500);
}