[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Command.java, 1.32, 1.33 CoordinateS
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-11-21 13:51:08
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25806/src/net/sourceforge/bprocessor/model Modified Files: Command.java CoordinateSystem.java Log Message: Experiment with transforming coordinate system Index: Command.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Command.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** Command.java 18 Nov 2007 20:25:33 -0000 1.32 --- Command.java 21 Nov 2007 13:51:01 -0000 1.33 *************** *** 780,783 **** --- 780,784 ---- Vertex v2 = locals.get(i); v1.set(v2); + v1.update(); } Project.getInstance().changed(Project.getInstance()); *************** *** 821,824 **** --- 822,826 ---- Vertex v2 = locals.get(i); v1.set(v2); + v1.update(); } Project.getInstance().changed(Project.getInstance()); Index: CoordinateSystem.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/CoordinateSystem.java,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** CoordinateSystem.java 13 Nov 2007 12:19:29 -0000 1.64 --- CoordinateSystem.java 21 Nov 2007 13:51:01 -0000 1.65 *************** *** 237,241 **** public Set<Vertex> collect() { Set<Vertex> result = super.collect(); ! // result.addAll(handles(1.0)); return result; } --- 237,241 ---- public Set<Vertex> collect() { Set<Vertex> result = super.collect(); ! result.addAll(handles(1.0)); return result; } *************** *** 743,747 **** */ public CoordinateSystem copy(Vertex origin) { ! return new CoordinateSystem(i, j, n, origin); } --- 743,747 ---- */ public CoordinateSystem copy(Vertex origin) { ! return new CoordinateSystem(i.copy(), j.copy(), n.copy(), origin); } |