This is what I look like when I wonder when covid-19 will end.
sketch jq
//Jiaqi Self-Portrait
function setup() {
createCanvas(500, 500);
background(220);
text("p5.js vers 0.9.0 test.", 10, 15);
}
function draw() {
scale(0.3);
background(224,164,151);
fill(96,76,63);
noStroke();
//me
//hair
ellipse(700,800,710,840);
rect(200,750,840,850);
//shadow
fill(57,39,21);
ellipse(657,820,498,588);
rect(320,820,588,762);
fill(244,211,158);
ellipse(540,1538,172);
rect(454,1292,172,352);
fill(216,175,142);
ellipse(556,1296,204,142);
//face
fill(244,211,158);
ellipse(626,1021,650,650);
//shirt
fill(0,105,52);
quad(255,1516,817,1516,951,1699,155,1699,);
fill(216,175,142);
rect(404,993,478,223);
//mask string
noFill();
stroke(46,167,224);
strokeWeight(12);
ellipse(362,1069,247,183);
noLoop();
noStroke();
//ear
fill(244,211,158);
ellipse(271,1048,121,226);
ellipse(540,1518,172);
//mask
fill(175,198,235);
rect(422,960,550,236);
//eyes
fill(0);
ellipse(510,897,32,75);
ellipse(833,898,32,75);
//eyelash
stroke(0);
strokeWeight(3);
line(486,875,505,870);
line(858,877,834,874);
noFill();
//eyebrows
stroke(96,76,63);
strokeWeight(5);
arc(500,804,80,50,PI,TWO_PI);
arc(830,780,80,50,0,PI);
noStroke();
//bird
fill(248,235,224);
ellipse(915,422,190,157);
ellipse(965,353,88);
triangle(758,438,839,380,849,480);
fill(0);
ellipse(943,352,10);
ellipse(1002,352,10);
fill(224,164,151);
triangle(965,353,987,353,976,372);
}