ICanvasPathMethodsArcTo Method |
Adds an arc to the path with the given control points and radius, connected to the previous point by a straight line.
Namespace: Aspose.Html.Dom.CanvasAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxvoid ArcTo(
double x1,
double y1,
double x2,
double y2,
double radius
)
Sub ArcTo (
x1 As Double,
y1 As Double,
x2 As Double,
y2 As Double,
radius As Double
)
void ArcTo(
double x1,
double y1,
double x2,
double y2,
double radius
)
abstract ArcTo :
x1 : float *
y1 : float *
x2 : float *
y2 : float *
radius : float -> unit
Parameters
- x1
- Type: SystemDouble
x-axis coordinates for the first control point. - y1
- Type: SystemDouble
y-axis coordinates for the first control point. - x2
- Type: SystemDouble
x-axis coordinates for the second control point. - y2
- Type: SystemDouble
y-axis coordinates for the second control point. - radius
- Type: SystemDouble
The arc's radius.
See Also