/* +---------------------------------------------------------------+ | | | A Java Program to Draw Stick Figures | | | | Author: Fritz Ruehr | | Date: 2 February 2000 | | Class: CS 231 | | School: Willamette University | | | | Vers.: 2.0 (straight-line code with variables) | | | | See Vers. 1.0 for series description. | | | | This second version (2.0) makes a series of method calls | | with integer variables and expressions as parameters. | | | +---------------------------------------------------------------+ */ // * // * CODE ELIDED FOR BREVITY: SEE CAFE AWT APPLET TEMPLATE // * /* ---------------------------------------------------------------- The standard applet paint method: Graphics parameter, no result. ---------------------------------------------------------------- */ public void paint(Graphics graphic) { /* ------------------------------------------------------------ Set up variables to record current (head) center at (48,48). ------------------------------------------------------------ */ int x = 48; // x co-ordinate of the center of the head int y = 48; // y co-ordinate of the center of the head /* ------------------------------------------------------- Drawing a stick figure with "head" centered at (48,48). ------------------------------------------------------- */ graphic.drawOval ( x-12, y-12, 24, 24 ); // head graphic.drawLine ( x , y+12, x , y+60 ); // body graphic.drawLine ( x-18, y+30, x+18, y+30 ); // arms graphic.drawLine ( x , y+60, x-18, y+78 ); // left leg graphic.drawLine ( x , y+60, x+18, y+78 ); // right leg /* --------------------------------------------------------- Set up variables to record new (head) center at (148,48). --------------------------------------------------------- */ x = x+100; // new x co-ordinate (48+100=148) /* ------------------------------------------------------- Drawing a stick figure with "head" centered at (148,48). NOTE: This is the EXACT same code as above!! ------------------------------------------------------- */ graphic.drawOval ( x-12, y-12, 24, 24 ); // head graphic.drawLine ( x , y+12, x , y+60 ); // body graphic.drawLine ( x-18, y+30, x+18, y+30 ); // arms graphic.drawLine ( x , y+60, x-18, y+78 ); // left leg graphic.drawLine ( x , y+60, x+18, y+78 ); // right leg // * // * CODE ELIDED FOR BREVITY (ONLY 2 FIGURES HERE) // * } // END method graphics } // END class Applet