[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Geometry.java, 1.63, 1.64 Translate.
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-11-09 09:45:29
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4471/src/net/sourceforge/bprocessor/model Modified Files: Geometry.java Translate.java Rotate.java Command.java AxisRotate.java Scale.java Log Message: checkpoint code cleanup Index: Rotate.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Rotate.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Rotate.java 5 Nov 2007 18:09:53 -0000 1.5 --- Rotate.java 9 Nov 2007 09:45:25 -0000 1.6 *************** *** 104,109 **** } } - Project.getInstance().changed(Project.getInstance()); - Project.getInstance().checkpoint(); } --- 104,107 ---- Index: Translate.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Translate.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Translate.java 16 Apr 2007 15:55:22 -0000 1.4 --- Translate.java 9 Nov 2007 09:45:25 -0000 1.5 *************** *** 105,110 **** } } - Project.getInstance().changed(Project.getInstance()); - Project.getInstance().checkpoint(); } --- 105,108 ---- Index: Geometry.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Geometry.java,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** Geometry.java 24 Oct 2007 16:04:54 -0000 1.63 --- Geometry.java 9 Nov 2007 09:45:25 -0000 1.64 *************** *** 438,443 **** mesh = space.insert(mesh); result.addAll(mesh.surfaces()); - Project.getInstance().changed(Project.getInstance().getActiveSpace()); - Project.getInstance().checkpoint(); return result; } --- 438,441 ---- Index: AxisRotate.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/AxisRotate.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AxisRotate.java 16 Apr 2007 15:55:22 -0000 1.4 --- AxisRotate.java 9 Nov 2007 09:45:25 -0000 1.5 *************** *** 128,133 **** } } - Project.getInstance().changed(Project.getInstance()); - Project.getInstance().checkpoint(); } --- 128,131 ---- Index: Command.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Command.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Command.java 8 Nov 2007 09:11:29 -0000 1.22 --- Command.java 9 Nov 2007 09:45:25 -0000 1.23 *************** *** 130,134 **** Surface face = new Surface(contour); owner.insert(face); - Project.getInstance().checkpoint(); } } --- 130,133 ---- *************** *** 545,550 **** space.insert(current); } - Project.getInstance().changed(Project.getInstance()); - Project.getInstance().checkpoint(); } } --- 544,547 ---- *************** *** 621,626 **** sides.add(bottom); space.insert(top); - Project.getInstance().changed(space); - Project.getInstance().checkpoint(); } } --- 618,621 ---- *************** *** 673,678 **** } world.insert(top); - Project.getInstance().changed(world); - Project.getInstance().checkpoint(); } } --- 668,671 ---- *************** *** 718,723 **** v1.set(v2); } - Project.getInstance().changed(Project.getInstance()); - Project.getInstance().checkpoint(); } } --- 711,714 ---- *************** *** 832,837 **** instance.setProto(space); world.add(instance); - proj.changed(world); - proj.checkpoint(); } } --- 823,826 ---- *************** *** 863,868 **** } world.add(created); - proj.changed(world); - proj.checkpoint(); } } --- 852,855 ---- Index: Scale.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Scale.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Scale.java 16 Apr 2007 15:55:22 -0000 1.5 --- Scale.java 9 Nov 2007 09:45:25 -0000 1.6 *************** *** 104,109 **** } } - Project.getInstance().changed(Project.getInstance()); - Project.getInstance().checkpoint(); } --- 104,107 ---- |