Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27661/src/net/sourceforge/bprocessor/gl/view
Modified Files:
View.java
Log Message:
Default colors changed
Index: View.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** View.java 3 Jan 2006 12:24:47 -0000 1.37
--- View.java 4 Jan 2006 12:57:43 -0000 1.38
***************
*** 80,89 ****
/** Surface color for all not selected surfaces */
public static final float[] SURFACE_COLOR = new float[] {1.0f, 1.0f, 1.0f};
-
- /** Front color for surfaces */
- public static final float[] FRONT_COLOR = new float[] {0.96f, 0.87f, 0.70f};
-
- /** Back color for surfaces */
- public static final float[] BACK_COLOR = new float[] {0.94f, 0.97f, 1.00f};
/** Used for selected objects */
--- 80,83 ----
***************
*** 103,113 ****
/** Front color for surfaces */
! protected static float[] frontColor = new float[] {0.96f, 0.87f, 0.70f};
/** NONE color for surfaces */
! protected static float[] noneColor = new float[] {0.70f, 0.70f, 0.70f};
/** Back color for surfaces */
! protected static float[] backColor = new float[] {0.40f, 0.58f, 0.93f};
/** Select mode for selecting edges */
--- 97,107 ----
/** Front color for surfaces */
! protected static float[] frontColor = new float[] {0.90f, 0.90f, 0.90f};
/** NONE color for surfaces */
! protected static float[] noneColor = new float[] {0.40f, 0.58f, 0.93f};
/** Back color for surfaces */
! protected static float[] backColor = new float[] {0.96f, 0.87f, 0.70f};
/** Select mode for selecting edges */
|