Version

GetCircleIntersection Method

Gets points intersecting a line and a circle with a given center and radius
Syntax
'Declaration
 
Public Shared Function GetCircleIntersection( _
   ByVal startPoint As Point, _
   ByVal endPoint As Point, _
   ByVal circleCenter As Point, _
   ByVal circleRadius As Double _
) As Tuple(Of Point,Point)
public static Tuple<Point,Point> GetCircleIntersection( 
   Point startPoint,
   Point endPoint,
   Point circleCenter,
   double circleRadius
)

Parameters

startPoint
endPoint
circleCenter
circleRadius
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also