PathBuilder.Qr

PathBuilder.Qr method

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

public PathBuilder Qr(double x1, double y1, double x, double y)
ParameterTypeDescription
x1DoubleThe x-coordinate of the control point, relative to the current position.
y1DoubleThe y-coordinate of the control point, relative to the current position.
xDoubleThe x-coordinate of the end point of the curve, relative to the current position.
yDoubleThe y-coordinate of the end point of the curve, relative to the current position.

Return Value

The current PathBuilder instance.

See Also