GraphicsPathAddArc Method
|
Append an arc segment to path.
Namespace: WebSupergoo.WordGlue4.Rendering
Assembly: WordGlue4 (in WordGlue4.dll)
Version: 4.1.0.0 (4.1.0.0)
Syntax
public void AddArc(
double start,
double end,
double cx,
double cy,
double rx,
double ry,
double angle,
Nullable<GraphicsPathEntryType> firstPointAction
)
Public Sub AddArc (
start As Double,
end As Double,
cx As Double,
cy As Double,
rx As Double,
ry As Double,
angle As Double,
firstPointAction As Nullable(Of GraphicsPathEntryType)
)
member AddArc :
start : float *
end : float *
cx : float *
cy : float *
rx : float *
ry : float *
angle : float *
firstPointAction : Nullable<GraphicsPathEntryType> -> unit
Parameters
- start
- Type: SystemDouble
Start angle of the arc in degrees
- end
- Type: SystemDouble
End angle of the arc in degrees
- cx
- Type: SystemDouble
Horizontal center of the arc
- cy
- Type: SystemDouble
Vertical center of the arc
- rx
- Type: SystemDouble
Horizontal radius of the arc
- ry
- Type: SystemDouble
Vertical radius of the arc
- angle
- Type: SystemDouble
Rotate angle
- firstPointAction
- Type: SystemNullableGraphicsPathEntryType
See Also