Search
Convert.PolarToCartesian Method
See Also
 






Transforms the specified point from polar coordinate system to dekart coordinate system.

Namespace: MindFusion.Geometry.Geometry2D
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

public static void PolarToCartesian (
    PointF coordCenter,
    float a,
    float r,
    ref PointF dekart
)

Visual Basic  Copy Code

Public Shared Sub PolarToCartesian( _
    coordCenter As PointF, _
    a As Single, _
    r As Single, _
    ByRef dekart As PointF _
)

 Parameters

coordCenter
A PointF specifying the center of the polar coordinate system.
a
The angle of the specified point, in the polar coordinate space.
r
The radius of the specified point, in the polar coordinate space.
dekart

Receives the dekart coordinates of the transformed point.

 See Also