PathBuilder.S

PathBuilder.S method

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

public PathBuilder S(double x2, double y2, double x, double y)
ParameterTypeDescription
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