/************************************************************** A Java Program to Draw Stick Figures Fritz Ruehr; Willamette CS 231; 1 February 2000 Vers. 1.5 (straight-line code, modified docs) This program was written as an example for students. It uses Java graphics routines to draw some stick figures in an applet window. **************************************************************/ // CODE ELIDED FOR BREVITY: SEE CAFE AWT APPLET TEMPLATE // ******************** // The standard applet paint method: Graphics parameter, no result. public void paint(Graphics graphic) { // ******************** // Draw a stick figure at (48,48). graphic.drawOval(36,36,24,24); // head graphic.drawLine(48,60,48,108); // body graphic.drawLine(30,78,66,78); // arms graphic.drawLine(48,108,30,126); // left leg graphic.drawLine(48,108,66,126); // right leg // ******************** // Draw a stick figure at (148,48). graphic.drawOval(136,36,24,24); // head graphic.drawLine(148,60,148,108); // body graphic.drawLine(130,78,166,78); // arms graphic.drawLine(148,108,130,126); // left leg graphic.drawLine(148,108,166,126); // right leg // ******************** // Draw a stick figure at (100,100). graphic.drawOval(88,88,24,24); // head graphic.drawLine(100,112,100,160); // body graphic.drawLine(82,130,118,130); // arms graphic.drawLine(100,160,82,178); // left leg graphic.drawLine(100,160,118,178); // right leg } // END method graphics } // END class Applet