size(400, 450); background(255); strokeWeight(10); stroke(0); fill(252, 184, 184); // pink // top of head arc(200, 200, 300, 300, PI, 2*PI, OPEN); // leave chord open // rest of body beginShape(); vertex(50,200); vertex(50,400); vertex(100,350); vertex(150,400); vertex(200,350); vertex(250,400); vertex(300,350); vertex(350,400); vertex(350,200); endShape(); // "open" so that border everywhere but between first/last points) // back to think lines for the eyes strokeWeight(1); // eyes fill(255); ellipse(158, 158, 56, 56); ellipse(242, 158, 56, 56); fill(0); // black for pupils ellipse(175, 158, 20, 20); ellipse(259, 158, 20, 20);