xxxxxxxxxx
28
function setup() {
createCanvas(400, 400);
background(60, 60, 100);
fill(240, 184, 160);
strokeWeight(1.7);
ellipse(110, 210, 40, 50);
ellipse(290, 210, 40, 50);
ellipse(200, 200, 180, 200);
fill(60, 19, 33);
arc(200, 165, 185, 160, 3.14, 0);
arc(107.5, 165, 110, 61.6, 0, 1.57);
arc(162.5, 165, 100, 61.6, 0, 1.57);
arc(292.5, 165, 160, 61.6, 1.57, 3.20);
fill(360);
arc(160, 224, 40, 60, 3.14, 0);
arc(240, 224, 40, 60, 3.14, 0);
fill(60, 19, 33);
ellipse(165, 210, 20, 25);
ellipse(245, 210, 20, 25);
fill(215, 107, 0);
triangle(190, 240, 200, 220, 210, 240);
noFill();
arc(200, 255, 35, 25, 0, 3.14);
}
function draw() {
print(mouseX, mouseY);
}