Version

AngularToCartesian(PointF,Double,Double) Method

Returns a point (XY) using the given radial coordinates (center, radius, angle).
Syntax
'Declaration
 
Public Overloads Shared Function AngularToCartesian( _
   ByVal center As PointF, _
   ByVal radius As Double, _
   ByVal theta As Double _
) As PointF
public static PointF AngularToCartesian( 
   PointF center,
   double radius,
   double theta
)

Parameters

center
The center of the circle upon which the targeted point lies on the circumference.
radius
The radius of the circle upon which the targeted point lies on the circumference.
theta
The angle of the targeted point, expressed in radians.

Return Value

The point taken from a circle with the given center, radius, and angle.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, 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