ICanvas.ArcTo

ICanvas.ArcTo method

Adds an arc to the current path, connecting the previous point to the start point of the arc with a straight line.

public void ArcTo(double x1, double y1, double x2, double y2, double radius)
ParameterTypeDescription
x1DoubleThe x-coordinate of the first arc point.
y1DoubleThe y-coordinate of the first arc point.
x2DoubleThe x-coordinate of the second arc point.
y2DoubleThe y-coordinate of the second arc point.
radiusDoubleThe radius of the arc.

See Also