DistanceToPointOnLine() private method

private DistanceToPointOnLine ( Point p ) : double
p Point
return double
Ejemplo n.º 1
0
 internal static double DistanceTo(this Point self, Line other)
 {
     return(other.DistanceToPointOnLine(self));
 }
Ejemplo n.º 2
0
 internal static double DistanceTo(this Point self, Line other)
 {
     return other.DistanceToPointOnLine(self);
 }