[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/tool MultiExtrudeTool.java,1.14,1.15
Status: Pre-Alpha
Brought to you by:
henryml
From: rimestad <rim...@us...> - 2006-04-05 10:23:38
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12112/src/net/sourceforge/bprocessor/gl/tool Modified Files: MultiExtrudeTool.java Log Message: Index: MultiExtrudeTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/MultiExtrudeTool.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** MultiExtrudeTool.java 5 Apr 2006 10:22:11 -0000 1.14 --- MultiExtrudeTool.java 5 Apr 2006 10:23:27 -0000 1.15 *************** *** 160,164 **** (e.getY() - pressY) * (e.getY() - pressY) > 16) { direction = normDotDelta; ! elements = makeExtrusion(surfaces); } } --- 160,164 ---- (e.getY() - pressY) * (e.getY() - pressY) > 16) { direction = normDotDelta; ! elements = makeExtrusion(); } } *************** *** 170,174 **** //If there are a target that is a surface drag to that surface Vertex origin = extrudeSurface.getFirstVertex(); ! Surface current = (Surface) o; if (current != extrudeSurface && current != top && !elements.contains(current)) { Vertex n = current.normal(); --- 170,174 ---- //If there are a target that is a surface drag to that surface Vertex origin = extrudeSurface.getFirstVertex(); ! Surface current = (Surface) target; if (current != extrudeSurface && current != top && !elements.contains(current)) { Vertex n = current.normal(); |