ICanvas.BezierCurveTo

ICanvas.BezierCurveTo method

Adds a cubic Bézier curve to the current path.

public void BezierCurveTo(double cp1x, double cp1y, double cp2x, double cp2y, double x, double y)
ParameterTypeDescription
cp1xDoubleThe x-coordinate of the first control point.
cp1yDoubleThe y-coordinate of the first control point.
cp2xDoubleThe x-coordinate of the second control point.
cp2yDoubleThe y-coordinate of the second control point.
xDoubleThe x-coordinate of the ending point.
yDoubleThe y-coordinate of the ending point.

See Also