PathBuilder.C

PathBuilder.C method

Adds a ‘Cubic Bezier Curve’ command to the path data.

public PathBuilder C(double x1, double y1, double x2, double y2, double x, double y)
ParameterTypeDescription
x1DoubleThe x-coordinate of the first control point.
y1DoubleThe y-coordinate of the first control point.
x2DoubleThe x-coordinate of the second control point.
y2DoubleThe y-coordinate of the second control point.
xDoubleThe x-coordinate of the end point of the curve.
yDoubleThe y-coordinate of the end point of the curve.

Return Value

The current PathBuilder instance.

See Also