[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/tool MultiExtrudeTool.java, 1.24, 1.25
Status: Pre-Alpha
Brought to you by:
henryml
From: rimestad <rim...@us...> - 2007-10-01 13:26:20
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32437/src/net/sourceforge/bprocessor/gl/tool Modified Files: MultiExtrudeTool.java Log Message: Removed space assignment from push/pull and fixed error when trying to extrude a hole by itself. Index: MultiExtrudeTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/MultiExtrudeTool.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** MultiExtrudeTool.java 5 Sep 2007 09:00:00 -0000 1.24 --- MultiExtrudeTool.java 1 Oct 2007 13:26:16 -0000 1.25 *************** *** 281,288 **** while (holes.hasNext()) { Surface hole = (Surface) holes.next(); ! creations.add(hole.extrudeControlled(-direction, creations, e2e, v2e, e2s, v2dir)); } } ! s = cur.extrudeControlled(-direction, creations, e2e, v2e, e2s, v2dir); } else { if (extrudeAll) { --- 281,288 ---- while (holes.hasNext()) { Surface hole = (Surface) holes.next(); ! creations.add(hole.extrudeControlled(-direction, true, creations, e2e, v2e, e2s, v2dir)); } } ! s = cur.extrudeControlled(-direction, true, creations, e2e, v2e, e2s, v2dir); } else { if (extrudeAll) { |