xxxxxxxxxx
64
let eyeX1 = 175; // X-coordinate of the left eye
let eyeY1 = 200; // Y-coordinate of the left eye
let eyeX2 = 225; // X-coordinate of the right eye
let eyeY2 = 200; // Y-coordinate of the right eye
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255, 204, 100);
// Update eye positions to follow the mouse cursor
eyeX1 = mouseX - 25;
eyeY1 = mouseY - 20;
eyeX2 = mouseX + 25;
eyeY2 = mouseY - 20;
fill(245, 200, 160);
ellipse(200, 200, 150, 150);
fill(139, 69, 19);
arc(200, 200, 155, 160, PI, TWO_PI);
fill(139, 69, 19);
arc(170, 129, 170, 110, PI, TWO_PI - QUARTER_PI);
fill(51, 0.4);
stroke(0);
strokeWeight(4);
ellipse(170, 199, 60, 40);
ellipse(230, 199, 60, 40);
noFill();
rect(175, 180, 50, 10);
fill(255);
ellipse(175, 200, 30, 30);
ellipse(225, 200, 30, 30);
fill(0);
ellipse(175, 200, 15, 15);
ellipse(225, 200, 15, 15);
noFill();
stroke(0);
arc(200, 230, 60, 40, 1, PI);
fill(245, 200, 160);
rect(95, 300, 60, 20);
fill(245, 200, 160);
rect(150, 300, 100, 150);
fill(0, 0, 255);
rect(150, 300, 100, 80);
fill(245, 200, 160);
rect(253, 300, 60, 20);
fill(245, 221, 176);
rect(188, 276, 20, 30);
}