[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/tool ExtrudeTool.java, 1.23, 1.24 Pencil.j
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-10-05 11:27:03
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17172/src/net/sourceforge/bprocessor/gl/tool Modified Files: ExtrudeTool.java Pencil.java Log Message: Removed methods from Project to add, remove and delete geometry Index: Pencil.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/Pencil.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Pencil.java 29 Sep 2006 13:40:11 -0000 1.13 --- Pencil.java 5 Oct 2006 11:26:59 -0000 1.14 *************** *** 92,97 **** start = current; incident = null; ! Collection vColl = Project.getInstance().getVertices(); ! Collection eColl = Project.getInstance().getEdges(); boolean exsGeometry = ((current.type() == Intersection.VERTEX && vColl.contains(current.object())) || --- 92,97 ---- start = current; incident = null; ! Collection vColl = Project.getInstance().getActiveSpace().getVertices(); ! Collection eColl = Project.getInstance().getActiveSpace().getEdges(); boolean exsGeometry = ((current.type() == Intersection.VERTEX && vColl.contains(current.object())) || Index: ExtrudeTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/ExtrudeTool.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** ExtrudeTool.java 18 Sep 2006 14:09:58 -0000 1.23 --- ExtrudeTool.java 5 Oct 2006 11:26:59 -0000 1.24 *************** *** 301,305 **** } if (LIMIT) { ! Collection surfaces = Project.getInstance().getSurfaces(); Iterator iter = surfaces.iterator(); Vertex normal = top.normal(); --- 301,305 ---- } if (LIMIT) { ! Collection surfaces = Project.getInstance().getActiveSpace().getSurfaces(); Iterator iter = surfaces.iterator(); Vertex normal = top.normal(); |