Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3960/src/net/sourceforge/bprocessor/gl/tool
Modified Files:
ExtrusionTool.java
Log Message:
removed reference to work plane
Index: ExtrusionTool.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/ExtrusionTool.java,v
retrieving revision 1.65
retrieving revision 1.66
diff -C2 -d -r1.65 -r1.66
*** ExtrusionTool.java 20 Aug 2007 12:33:37 -0000 1.65
--- ExtrusionTool.java 5 Sep 2007 08:56:51 -0000 1.66
***************
*** 267,271 ****
ontoPlane = ((Surface) target).plane();
makeTarget(current);
! } else if (target instanceof Plane && target != plane) {
ontoPlane = (Plane)target;
makeTarget(current);
--- 267,271 ----
ontoPlane = ((Surface) target).plane();
makeTarget(current);
! } else if (target instanceof Plane) {
ontoPlane = (Plane)target;
makeTarget(current);
|