xxxxxxxxxx
91
let animX = 10;
function setup() {
createCanvas(600, 500);
}
function draw() {
background(100);
frameRate(5);
//Hair
noStroke();
fill(0);
arc(275, 195, 205, 205, PI, 0); // Top of the head
rect(223,125,50,0)
// Neck
fill("#5C3614");
rectMode(CENTER);
rect(275, 370, 50, 80);
// Shirt
fill("#8A7F7F");
rect(275, 450, 200, 150);
fill("#E6DBDB");
triangle(250, 375, 300, 375, 275, 455);
rect(338,415,50,50);
fill(0);
circle(275,465,5);
circle(275,480,5);
circle(275,495,5);
circle(275,510,5);
// Face
fill("#5C3614");
ellipse(275, 250, 170, 225);
// Ears
fill("#5C3614");
arc(195, 250, 30, 70, HALF_PI, PI + HALF_PI); // Left ear
arc(355, 250, 30, 70, PI + HALF_PI, HALF_PI); // Right ear
// Eyes
fill(255); // White color for the eyes
rand1 = random(230,245);
rand2 = random(310,325);
ellipse(235, 230, 40, 30); // Left eye
ellipse(315, 230, 40, 30); // Right eye
fill(0); // Pupil color
ellipse(rand1, 230, 20, 20); // Left pupil
ellipse(rand2, 230, 20, 20); // Right pupil
fill(255);
ellipse(240, 225, 8, 8);
ellipse(320, 225, 8, 8);
// Eyebrows
stroke(0);
strokeWeight(4);
noFill();
arc(225, 210, 40, 15, PI, TWO_PI); // Left eyebrow
arc(325, 210, 40, 15, PI, TWO_PI); // Right eyebrow
// Nose
noStroke();
fill("#eab676");
triangle(275,260,290,300,260,300)
// Mouth
fill("#EFA4A1");
arc(275,325, 60, 30, 0, PI);
//stars
// fill(255);
// // rand = random(width);
// speed = random(5);
// circle(rand,rand,5);
// print(mouseX, mouseY)
}