Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12158
Modified Files:
View.java
Log Message:
removed this code, I honestly do not know what its intention was but it messed things up when interested in other planes than the XY
Index: View.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v
retrieving revision 1.77
retrieving revision 1.78
diff -C2 -d -r1.77 -r1.78
*** View.java 10 Apr 2006 11:55:43 -0000 1.77
--- View.java 13 Apr 2006 13:55:23 -0000 1.78
***************
*** 1971,1980 ****
Vertex intersection = xy.intersection(ray);
if (intersection != null) {
- // FIXME The plane intersection should take care
- // of the following round off
- double values[] = xy.getDoublev();
- if (values[3] == 0) {
- intersection.setZ(0.0);
- }
return new Intersection(intersection, Intersection.PLANE_INTERSECTION, xy);
}
--- 1971,1974 ----
|