void setup() { size(500, 500); background(0, 200, 250); smooth(); } void draw () { // first draw the head fill (255, 200, 0); ellipse (250, 250, 250, 250); //next, the eyes fill (255, 255, 255); ellipse (200, 250, 70, 100); fill (255, 255, 255); ellipse (300, 250, 70, 100); //then, the pupils fill (0, 0, 0); ellipse (200, 275, 50, 50); fill (0, 0, 0); ellipse (300, 275, 50, 50); //a little triangle nose fill (250,100, 150); triangle(245, 310, 250, 300, 255, 310); //a cute smile noFill(); arc(250, 330, 30, 30, 0, PI); //and a pink bow fill (250, 100, 150); //rotate(PI/3.0); ellipse (170, 137, 40, 60); ellipse (230, 137, 40, 60); ellipse (200, 135, 40, 40); }