[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/view View.java, 1.106, 1.107
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-07-17 09:08:46
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4883/src/net/sourceforge/bprocessor/gl/view Modified Files: View.java Log Message: ConstructorTool now also creates vectors Index: View.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v retrieving revision 1.106 retrieving revision 1.107 diff -C2 -d -r1.106 -r1.107 *** View.java 17 Jul 2006 08:31:01 -0000 1.106 --- View.java 17 Jul 2006 09:08:42 -0000 1.107 *************** *** 769,772 **** --- 769,781 ---- } + { + gl.glColor3fv(CONSTRUCTOR_COLOR); + Iterator it = tempVertices.iterator(); + while (it.hasNext()) { + drawObject(it.next()); + } + } + + // draw target if (target != null) { *************** *** 775,778 **** --- 784,788 ---- } + gl.glDisable(GL.GL_DEPTH_TEST); *************** *** 782,788 **** drawObject(it.next()); } ! } } /** * Draw space --- 792,800 ---- drawObject(it.next()); } ! } ! } + /** * Draw space |