ComponentOne Excel for .NET
C1.Excel Assembly / C1.Util Namespace / GraphicsRendering Class / ArcToBezier Method
The start point.
The end point.
The x-radius and y-radius of the arc.
The rotation angle.
The clockwise sweep direction or no.

In This Topic
    ArcToBezier Method (GraphicsRendering)
    In This Topic
    Convert an arc to Bezier curves.
    Syntax
    'Declaration
     
    Public Shared Function ArcToBezier( _
       ByVal start As System.Drawing.PointF, _
       ByVal end As System.Drawing.PointF, _
       ByVal sz As System.Drawing.SizeF, _
       ByVal theta As System.Double, _
       ByVal clockwise As System.Boolean _
    ) As System.Drawing.PointF()
    public static System.Drawing.PointF[] ArcToBezier( 
       System.Drawing.PointF start,
       System.Drawing.PointF end,
       System.Drawing.SizeF sz,
       System.double theta,
       System.bool clockwise
    )

    Parameters

    start
    The start point.
    end
    The end point.
    sz
    The x-radius and y-radius of the arc.
    theta
    The rotation angle.
    clockwise
    The clockwise sweep direction or no.

    Return Value

    An array of triples points for Bezier curves.
    See Also