Project() private method

private Project ( Point p ) : Point
p Point
return Point
Exemplo n.º 1
0
 internal static Point ClosestPointOn(this Point self, Line l)
 {
     // ReSharper disable once PossibleInvalidOperationException
     return(l.TrimTo(l.Project(self)).Value);
 }
Exemplo n.º 2
0
 internal static Point ClosestPointOn(this Point self, Line l)
 {
     // ReSharper disable once PossibleInvalidOperationException
     return l.TrimTo(l.Project(self)).Value;
 }