function setup() {
createCanvas(600, 600);
background(255,248,220);
}
function draw() {
//face
stroke(255,218,185);
strokeWeight(3);
fill(255,229,204);
rect(225,175,150,200,60);
stroke(0);
strokeWeight(2);
ellipse(270,295,45);
ellipse(335,295,45);
line(291,290,314,290);
line(240,280,248,290);
line(356,290,360,280);
strokeWeight(10);
line(255,270,286,270);
line(320,270,350,270);
ellipse(270,290,2);
ellipse(335,290,2);
strokeWeight(5);
line(303,288,303,317);
strokeWeight(3);
fill(238,44,44);
quad(280,345,303,335,326,345,303,355);
//hair
stroke(105,105,105);
strokeWeight(3);
fill(160,160,160);
rect(200,250,40,200);
rect(360,175,40,275);
triangle(200,175,400,175,200,300);
}
I designed my self-portrait to concentrate on squares, which makes it very cartoon-like.