Ejemplo n.º 1
0
 public double getEnemyMovementDirection() {
   return Util.angleBetween2Points(
       this.enemyX, this.enemyY, this.previousEnemyX, this.previousEnemyX);
 }
Ejemplo n.º 2
0
 public double getDistanceToEnemy() {
   return Util.distanceBetween2Points(
       this.getX(), this.getY(), this.getEnemyX(), this.getEnemyY());
 }