[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/tool MoveTool.java,1.22,1.23
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-01-11 13:55:43
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31937/src/net/sourceforge/bprocessor/gl/tool Modified Files: MoveTool.java Log Message: MoveTool asks Constraints to update Index: MoveTool.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/MoveTool.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** MoveTool.java 10 Jan 2006 14:04:42 -0000 1.22 --- MoveTool.java 11 Jan 2006 13:55:28 -0000 1.23 *************** *** 11,15 **** --- 11,17 ---- + import net.sourceforge.bprocessor.model.Constraints; import net.sourceforge.bprocessor.model.Edge; + import net.sourceforge.bprocessor.model.Entity; import net.sourceforge.bprocessor.model.Plane; import net.sourceforge.bprocessor.model.Vertex; *************** *** 128,131 **** --- 130,137 ---- ClippingPlane plane = (ClippingPlane) o; plane.update(); + } else { + if (o instanceof Entity) { + Constraints.getInstance().update((Entity) o); + } } } |