DistanceToPointOnLine() private method

private DistanceToPointOnLine ( Point p ) : double
p Point
return double
コード例 #1
0
 internal static double DistanceTo(this Point self, Line other)
 {
     return(other.DistanceToPointOnLine(self));
 }
コード例 #2
0
 internal static double DistanceTo(this Point self, Line other)
 {
     return other.DistanceToPointOnLine(self);
 }