Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19672/src/net/sourceforge/bprocessor/gl/view
Modified Files:
View.java
Log Message:
Added two TODO's to drawSurfaces about front and back color
Index: View.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** View.java 4 Jan 2006 12:57:43 -0000 1.38
--- View.java 10 Jan 2006 08:23:59 -0000 1.39
***************
*** 1386,1393 ****
--- 1386,1395 ----
} else {
if (side == FRONT) {
+ // TODO Check the color of the front material of the Surface
Space back = s.getFrontDomain();
gl.glColor3fv(getSpaceColor(back));
}
if (side == BACK) {
+ // TODO Check the color of the back material of the Surface
Space front = s.getBackDomain();
gl.glColor3fv(getSpaceColor(front));
|