[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/view View.java, 1.250, 1.251 Display.java,
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-10-15 11:45:46
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25955/src/net/sourceforge/bprocessor/gl/view Modified Files: View.java Display.java Log Message: Not display net not active Index: Display.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/Display.java,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** Display.java 15 Oct 2007 10:29:27 -0000 1.35 --- Display.java 15 Oct 2007 11:45:45 -0000 1.36 *************** *** 745,749 **** } } else { ! interior = true; } --- 745,757 ---- } } else { ! if (space instanceof Net) { ! if (space == active) { ! interior = true; ! } else { ! interior = false; ! } ! } else { ! interior = true; ! } } Index: View.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v retrieving revision 1.250 retrieving revision 1.251 diff -C2 -d -r1.250 -r1.251 *** View.java 15 Oct 2007 10:29:27 -0000 1.250 --- View.java 15 Oct 2007 11:45:45 -0000 1.251 *************** *** 1617,1621 **** Vertex direction = to.minus(from); double dist = direction.length() * 16; - System.out.println("dist " + dist); gl.glEnable(GL.GL_LIGHTING); GLUquadric quad = glu.gluNewQuadric(); --- 1617,1620 ---- |