Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18244/src/net/sourceforge/bprocessor/gl/tool
Modified Files:
MoveTool.java
Log Message:
Changed so the vertex of the start inersection is a copy of the original and therefor will not be moved causing the start-coordinatesystem-constructors to be moved aswell.
Index: MoveTool.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/MoveTool.java,v
retrieving revision 1.69
retrieving revision 1.70
diff -C2 -d -r1.69 -r1.70
*** MoveTool.java 7 Sep 2006 15:54:47 -0000 1.69
--- MoveTool.java 11 Sep 2006 13:13:07 -0000 1.70
***************
*** 191,195 ****
}
if (!entities.isEmpty()) {
! start = current;
to = last;
updateFeedback();
--- 191,195 ----
}
if (!entities.isEmpty()) {
! start = current.copy();
to = last;
updateFeedback();
|