xxxxxxxxxx
43
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220, 200, 200);
fill(200, 120, 120);
ellipse(200, 190, 250, 230);
fill(200, 170, 170);
circle(200, 200, 150);
fill(200, 100, 100);
ellipse(200, 210, 50, 26);
fill(0);
ellipse(165, 180, 10, 15);
fill(0);
ellipse(230, 180, 10, 15);
fill(0);
ellipse(190, 210, 5, 10);
fill(0);
ellipse(210, 210, 5, 10);
noFill();
arc(200, 235, 50, 35, 45, PI, OPEN);
fill(150, 160, 160);
triangle(150, 120, 130, 150, 160, 150);
fill(150, 160, 160);
triangle(250, 120, 270, 150, 240, 150);
fill(200, 170, 170);
triangle(240, 297, 250, 350, 270, 285);
fill(200, 170, 170);
triangle(130, 285, 150, 350, 160, 297);
}