//***************************************************************************** // // Beenish Chaudry, Geetika Tewari, Elif Tosun and // Ileana Streinu // // Summer 1999, Fall 1999, Spring 2000 // //***************************************************************************** // // StateOrigin.java // // constant class // used to set options, in the Set_of_Points menu, for drawing the origin // used in Draw-ing the axes // used when resizing, to move the axes accordinly (e.g. when centered and // window is resized // // tell where is or where to set the origin // //***************************************************************************** class StateOrigin{ public final static int standard = 0; // standard origin (left top corner) public final static int center = 1; // centered in the window public final static int arbitrary = 3; // arbitrary }