Exemplo n.º 1
0
 /// <summary>
 /// Returns a Point corresponding to the closest point on LineSegment Seg to this point
 /// </summary>
 /// <param name="Seg">Returns the closest point on Seg to this point</param>
 /// <returns>A Point representing the closest location on Seg to this point</returns>
 public Point ClosestPointOn(LineSegment Seg)
 {
     return(Seg.ClosestPointTo(this));
 }