Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17187/src/net/sourceforge/bprocessor/gl/tool
Modified Files:
ConstructorTool.java
Log Message:
CoordinateSystem.normalize() normalizes the vectors in the coordinate-system Ð keeping the direction of the i vector
Index: ConstructorTool.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/ConstructorTool.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** ConstructorTool.java 3 Aug 2006 14:35:28 -0000 1.9
--- ConstructorTool.java 11 Aug 2006 12:44:25 -0000 1.10
***************
*** 83,86 ****
--- 83,87 ----
CoordinateSystem cs = new CoordinateSystem(i, j, k, p1);
cs.onlyPlane(true);
+ cs.normalize();
Project.getInstance().getActiveSpace().add(cs);
Project.getInstance().checkpoint();
|