Exemplo n.º 1
0
  /** 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();
    }
  }
Exemplo n.º 2
0
 public void moveActive(Active a) {
   a.moveComponent();
 }