[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Vertex.java, 1.38, 1.39
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-07-20 11:08:50
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11135/src/net/sourceforge/bprocessor/model Modified Files: Vertex.java Log Message: Fixed bug in AbstractPencil with shift-locking direction Index: Vertex.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Vertex.java,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** Vertex.java 13 Jul 2006 13:28:24 -0000 1.38 --- Vertex.java 20 Jul 2006 11:08:44 -0000 1.39 *************** *** 433,437 **** public void normalize() { if (getX() != 0.0 || getY() != 0.0 || getZ() != 0.0) { ! this.scale(1 / this.length()); } } --- 433,437 ---- public void normalize() { if (getX() != 0.0 || getY() != 0.0 || getZ() != 0.0) { ! scale(1 / length()); } } |