xxxxxxxxxx
86
let Eyeball; // Variable to control pupil movement
function setup() {
// Create drawing canvas
createCanvas(400, 400);
// Background
background(500, 200, 300);
}
function draw() {
// Clear background every frame for smooth animation
background(500, 200, 300);
// Calculate vertical position offset for the pupils
Eyeball = sin(frameCount * 0.05) * 5; // Sinusoidal movement
// Back hair
fill(0, 0, 0);
noStroke();
rect(100, 150, 160, 220);
rect(150, 150, 150, 220);
// Neck
push();
rectMode(CENTER);
fill(248, 199, 172);
noStroke();
rect(200, 300, 70, 100); // Position is within the canvas
pop();
// Face
fill(248, 230, 220);
ellipse(200, 200, 220, 250);
// Front hair (side bangs)
push();
translate(150, 120); // Adjusted x, y coordinates for the left side bang
rotate(radians(45));
fill(0, 0, 0); // Black color for hair
ellipse(0, 0, 100, 250);
pop();
push();
translate(250, 120); // Adjusted x, y coordinates for the right side bang
rotate(radians(-45));
fill(0, 0, 0);
ellipse(0, 0, 100, 250);
pop();
// Eyes
fill(255);
ellipse(165, 200, 50, 60);
ellipse(235, 200, 50, 60);
// Moving black pupils
fill(0);
ellipse(170, 200 + pupilOffsetY, 10, 10); // Left pupil with moving Y position
ellipse(240, 200 + pupilOffsetY, 10, 10); // Right pupil with moving Y position
// Eyebrows
stroke(100);
strokeWeight(10);
line(145, 155, 180, 160);
line(230, 160, 260, 158);
// Simple Half-Curve Nose
stroke(207, 140, 93); // Color for the nose
strokeWeight(3);
noFill();
arc(200, 230, 30, 20, HALF_PI, PI); // Simple half-curve for the nose
// Lips
noStroke();
fill(230, 165, 165);
ellipse(200, 270, 70, 30);
// Tongue
fill(255, 100, 100); // Pinkish color for the tongue
triangle(185, 290, 200, 270, 215, 290); // Adjusted positions to move tongue down
// Curved Round Body with Light Blue Shirt
fill(173, 216, 230); // Light blue color for the shirt
ellipse(200, 450, 180, 220); // Draws the curved body
}