/* +---------------------------------------------------------------+ | | | A Java Program to Draw Stick Figures | | | | Author: Fritz Ruehr | | Date: 1 February 2000 | | Class: CS 231 | | School: Willamette University | | | | Vers.: 1.0 (straight-line code) | | | | This program was written as part of a series of examples | | for students in the course. The series as a whole is meant | | to demonstrate different coding and commenting styles. The | | programs also represent various points along a progression | | from "naive" to more sophisticated techniques. Each program | | uses Java graphics routines to draw some stick figures in | | an applet window. | | | | This first version (1.0) makes a series of method calls | | with just integer constants as the parameters. | | | +---------------------------------------------------------------+ */ // * // * CODE ELIDED FOR BREVITY: SEE CAFE AWT APPLET TEMPLATE // * /* ---------------------------------------------------------------- The standard applet paint method: Graphics parameter, no result. ---------------------------------------------------------------- */ public void paint(Graphics graphic) { /* ------------------------------------------------------------------- Drawing a stick figure of a person with "head" centered 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 /* -------------------------------------------------------------------- Drawing a stick figure of a person with "head" centered 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 /* --------------------------------------------------------------------- Drawing a stick figure of a person with "head" centered 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