public class FaceDrawing { public static void main (String[] argv) { // Bring up the GUI. DrawTool.display (); // Draw a circular face outline. The oval // is inscribed by the rectangle whose top-left // corner is at (1,9) and with width 8, length 8. DrawTool.drawOval (1,9, 8,8); // Eyes. DrawTool.drawOval (2,7, 2,1); DrawTool.drawOval (6,7, 2,1); // Nose. DrawTool.drawOval (4.5,5.3, 1,2); // Mouth: draw a line from (4,3) to (6,3). DrawTool.drawLine (4,3, 6,3); } }