/** Sets up new coordinates and rotation of all VivaeObjects according to their movement. */ public void moveVivaes() { for (Active active : actives) { active.moveComponent(); } for (Passive passive : passives) { passive.moveComponent(); } for (VivaeController controller : controllers) { controller.moveControlledObject(); } }
public void moveActive(Active a) { a.moveComponent(); }