[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/view Display.java, 1.84, 1.85
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2008-10-08 10:29:19
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24802/src/net/sourceforge/bprocessor/gl/view Modified Files: Display.java Log Message: Clippingplane improved Index: Display.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/Display.java,v retrieving revision 1.84 retrieving revision 1.85 diff -C2 -d -r1.84 -r1.85 *** Display.java 10 Sep 2008 22:53:50 -0000 1.84 --- Display.java 8 Oct 2008 10:26:36 -0000 1.85 *************** *** 827,832 **** gl.glEnd(); if (clipplane.isActive()) { ! Collection<Surface> surfaces = clipplane.getSilhouette().getSurfaces(); ! paintSurfaces(surfaces, TRUE); gl.glColor3fv(View.CLIP_PLANE_COLOR, 0); --- 827,834 ---- gl.glEnd(); if (clipplane.isActive()) { ! if (!clipplane.isOnlyLines()) { ! Collection<Surface> surfaces = clipplane.getSilhouette().getSurfaces(); ! paintSurfaces(surfaces, TRUE); ! } gl.glColor3fv(View.CLIP_PLANE_COLOR, 0); |