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
Syntax public void ArcTo(
double x1,
double y1,
double x2,
double y2,
double radius
)
Public Sub ArcTo (
x1 As Double,
y1 As Double,
x2 As Double,
y2 As Double,
radius As Double
)
public:
virtual void ArcTo(
double x1,
double y1,
double x2,
double y2,
double radius
) sealed
abstract ArcTo :
x1 : float *
y1 : float *
x2 : float *
y2 : float *
radius : float -> unit
override 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.
Implements
ICanvasPathMethodsArcTo(Double, Double, Double, Double, Double)See Also