Challenge Funny Face



Use what you learned about drawing ellipses to make this face funny looking.

This face is made of four ellipse()s, and the last one draws the mouth. Make the mouth ellipse at least 120 pixels wide and 40 pixels tall! (But don't move it yet!) You can type in new numbers or click a number and use the 'number scrubber' to change them. Remember that the 2nd to last argument to ellipse() is the width, and the last argument is the height.

ellipse(200, 200, 200, 200); // Makes the face

ellipse(160, 170, 30, 30); // Makes the eye

ellipse(235, 170, 30, 30); // Makes the other eye

ellipse(195, 245, 75, 20); // Makes the mouth