The most interesting about the project is using simple elements to create a meaningful drawing.
sketch
//Elmy Chen Section D
function setup() {
createCanvas(500, 500);
background(220);
}
function draw() {
fill (255,160,122);
ellipse(250,250,350,410);
fill(0,0,0);
ellipse(150,200,40,40);
ellipse(320,200,40,40);
fill(255,0,0);
triangle(220,400,280,400,250,420);
fill(139,69,19);
rect(50,45,90,400);
rect(350,45,90,400);
rect(140,45,110,100);
rect(250,45,110,100);
}