function setup() {
createCanvas(500, 500);
background(201,191,182);
}
function draw() {
//hair base
noStroke()
fill(143, 97, 61);
ellipse(250, 250, 350, 400);
//face
fill(209, 174, 148);
ellipse(250, 200, 300, 280)
//hair coloring
fill(179, 122, 77);
rotate(-75);
ellipse(320, -20, 280, 100);
//eyes
fill(39, 25, 12);
noFill()
stroke(0);
arc(250, 100, 45, 40, -PI, 0);
arc(350, 100, 45, 40, -PI, 0);
//mouth
fill(255, 153, 153);
stroke(0);
arc(350, 150, 80, 80, 0, PI);
//neck
noStroke()
fill(209, 174, 148);
rect(280, 200, 100, 60);
//shirt
fill(230, 230, 255);
rect(170, 260, 320, 280, 500, 500, 500, 500);
//cheeks
fill(255, 230, 230);
ellipse(200, 150, 30);
ellipse(430, 120, 30);
//necklace
fill(0, 0, 0);
rect(280, 230, 100, 15);
//eye crinkle
noFill()
rotate(-25);
stroke(10);
triangle(380, 10, 450, 10, 400, 20);
triangle(380, 20, 450, 20, 400, 30);
}
Aside from basic facial features, I tried to graphically represent in the most basic way some characteristics that people have pointed out about me, such as my cheeks or the crinkles next to my eyes when I smile.