/* +---------------------------------------------------------------+ | | | A Java Program to Draw Stick Figures | | | | Author: Fritz Ruehr | | Date: 2 February 2000 | | Class: CS 231 | | School: Willamette University | | | | Vers.: 5.0 (method, parameters and some calculation) | | | | See Vers. 1.0 for series description. | | | | This fifth version (5.0) uses a method to "abbreviate" the | | main drawing code, with co-ordinates as parameters. | | In addition, it uses calculation and "moves" to make the | | drawing process more intuitive. | | | +---------------------------------------------------------------+ */ // * // * CODE ELIDED FOR BREVITY: SEE CAFE AWT APPLET TEMPLATE // * /* ------------------------------------------------------- METHOD drawFigure: two int parameters (x,y), no result. Draws a stick figure with "head" centered at (x,y). ------------------------------------------------------- */ public void drawFigure(Graphics graphic, int x, int y) { int head = 24; // head size (width and height) int torso = 48; // length (or height) of torso int span = 36; // combined width of both arms int neck = 18; // distance down from head to arms int leg = 18; // length of each leg (diagonal) graphic.drawOval ( x-head/2, y-head/2, head, head ); // draw the head y = y + head / 2; // move y to bottom of head graphic.drawLine ( x, y, x, y+torso ); // draw the body y = y + neck; // move y down to arm level graphic.drawLine ( x-span/2, y, x+span/2, y ); // draw the arms y = y + torso - neck; // move y to bottom of torso graphic.drawLine ( x, y, x-leg, y+leg ); // draw the left leg graphic.drawLine ( x, y, x+leg, y+leg ); // draw the right leg } // END method drawFigure /* ---------------------------------------------------------------- The standard applet paint method: Graphics parameter, no result. ---------------------------------------------------------------- */ public void paint(Graphics graphic) { /* ---------------------------------------- Draw three figures in the applet window. ---------------------------------------- */ drawFigure(graphic, 48, 48); // Draw figure with (head) center at ( 48, 48). drawFigure(graphic, 148, 48); // Draw figure with (head) center at (148, 48). drawFigure(graphic, 100,100); // Draw figure with (head) center at (100,100). } // END method paint } // END class Applet