Project() 개인적인 메소드

private Project ( Point p ) : Point
p Point
리턴 Point
예제 #1
0
 internal static Point ClosestPointOn(this Point self, Line l)
 {
     // ReSharper disable once PossibleInvalidOperationException
     return(l.TrimTo(l.Project(self)).Value);
 }
예제 #2
0
 internal static Point ClosestPointOn(this Point self, Line l)
 {
     // ReSharper disable once PossibleInvalidOperationException
     return l.TrimTo(l.Project(self)).Value;
 }