//drawing a face size(600, 600); background(255, 255, 0); //head fill(165, 114, 68); rect(20, 100, 400, 400, 0,0, 180, 180); //hair fill(0); triangle(70, 30, 120, 100, 20, 100); fill(0); triangle(170, 30, 220, 100, 120, 100); fill(0); triangle(270, 30, 320, 100, 220, 100); fill(0); triangle(370, 30, 420, 100, 320, 100); //eyebrows fill(0); rect(70, 150, 90, 10, 45); fill(0); rect(280, 150, 90, 10, 45); //eyes fill(255); ellipse(115, 210, 60, 60); fill(255); ellipse(325, 210, 60, 60); //pupils fill(0); ellipse(130, 225, 20, 20); fill(0); ellipse(310, 195, 20, 20); //nose triangle(220, 210, 280, 350, 160, 350); //mouth fill(255, 218, 185); arc(220, 400, 200, 100, 0, PI, CHORD); //teeth fill(255); rect(200, 400, 20, 25); fill(255); rect(220, 400, 20, 25); save("activity2.png");