C1.Excel Assembly / C1.Util Namespace / SvgRendering 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 (SvgRendering)
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()
 

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