示例#1
0
 public double getDistanceCuad(BuffPoint3f other)
 {
     return(Square(other.getX() - getX())
            + Square(other.getY() - getY())
            + Square(other.getZ() - getZ()));
 }
示例#2
0
 public double getDistanceL1(BuffPoint3f other)
 {
     return(Math.Abs(other.getX() - getX())
            + Math.Abs(other.getY() - getY())
            + Math.Abs(other.getZ() - getZ()));
 }
示例#3
0
 public double getDistance(BuffPoint3f other)
 {
     return(Math.sqrt(getDistanceCuad(other)));
 }