Exemplo n.º 1
0
 /**
  * Calculates the L infinite (max of abs) distance between two points.
  *
  * @param vector1
  * @param vector2
  * @return
  */
 public static double infiniteDistance(double[] vector1, double[] vector2) {
   return MathUtils.distanceInf(vector1, vector2);
 }