Path2DArcTo 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.Canvas
Assembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntax
public void ArcTo(
	double x1,
	double y1,
	double x2,
	double y2,
	double radius
)

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