Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30596
Modified Files:
Tool.java
Log Message:
added constants for representing the new tools
Index: Tool.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/Tool.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Tool.java 26 Jul 2005 12:36:11 -0000 1.1
--- Tool.java 5 Aug 2005 10:53:55 -0000 1.2
***************
*** 16,21 ****
/** The select tool */
public static final int SELECT_TOOL = 0;
-
/** The draw tool */
public static final int DRAW_TOOL = 1;
}
--- 16,26 ----
/** The select tool */
public static final int SELECT_TOOL = 0;
/** The draw tool */
public static final int DRAW_TOOL = 1;
+ /** The move tool */
+ public static final int MOVE_TOOL = 2;
+ /** The extrude tool */
+ public static final int EXTRUSION_TOOL = 3;
+
+
}
|