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