Version

FindRadialPoint Method

Finds a point in Cartesian coordinates using radial parameters.
Syntax
'Declaration
 
Public Shared Function FindRadialPoint( _
   ByVal center As Point, _
   ByVal angle As Double, _
   ByVal radius As Double _
) As Point
public static Point FindRadialPoint( 
   Point center,
   double angle,
   double radius
)

Parameters

center
The center of a circle to find a point on the border of.
angle
The angle at which to find a point.
radius
The radius of the circle.

Return Value

The point on the border of a circle with the given center and radius, at the specified angle.
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