PathBuilder.Q

PathBuilder.Q method

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

public PathBuilder Q(double x1, double y1, double x, double y)
ParameterTypeDescription
x1DoubleThe x-coordinate of the control point.
y1DoubleThe y-coordinate of the 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