function setup() {
createCanvas(800, 600);
}
function draw() {
background(249,246,238);//face color
fill(5,5,5); //black hair
rect(0,0,70,600);
rect(100,0,40,600);
rect(720,0,70,600);
rect(650,0,40,600);
fill(118,93,53);//highlights
rect(70,0,30,600);
rect(690,0,30,600);
fill(5,5,5);//eyebrows
strokeWeight(18);
line(450,150,550,140);//right eyebrow
line(550,140,590,155);
line(350,150,250,140);//left eyebrow
line(210,155,250,140);
fill(255,255,255);//eyes
ellipse(260,250,50,60);//left eye
ellipse(530,250,50,60);//right eye
fill(48,43,36);//lashes
line(260,200,260,210);//left 1
line(240,200,250,210);//left 2
line(530,200,530,210);//right 1
line(550,200,540,210);//right 2
fill(48,43,36);//eyebags
strokeWeight(13);
line(275,290,240,330);//left
line(535,290,560,330);//right
fill(208,165,105);//nose
triangle(400,250,360,350,440,350);
fill(179,78,50);//lips
strokeWeight(7);
arc(350,400,200,90,0,HALF_PI,CHORD);
noLoop();
}
My project is a very zoomed in version of my face and emphasizes my highlights, and is mostly symmetrical other than my mouth.