xxxxxxxxxx
function setup() {
createCanvas(400, 400);
background(220);
}
function draw() {
// Bunny body
fill(255);
ellipse(200, 300, 150, 100); // Body
ellipse(200, 250, 120, 80); // Head
// Bunny ears
fill(255);
ellipse(160, 200, 40, 100); // Left ear
ellipse(240, 200, 40, 100); // Right ear
// Bunny eyes
fill(0);
ellipse(180, 240, 10, 10); // Left eye
ellipse(220, 240, 10, 10); // Right eye
// Bunny nose
fill(255, 192, 203); // Pink color
triangle(200, 250, 190, 260, 210, 260);
// Bunny mouth
noFill();
arc(200, 265, 20, 10, 0, PI); // Mouth
// Bunny whiskers
line(170, 260, 190, 260); // Left whiskers
line(210, 260, 230, 260); // Right whiskers
// Bunny feet
fill(255);
ellipse(160, 340, 40, 20); // Left foot
ellipse(240, 340, 40, 20); // Right foot
noLoop(); // Stops draw from looping
}