curve To Relative
fun curveToRelative(x1: Number, y1: Number, x2: Number, y2: Number, x: Number, y: Number): PathBuilder
Adds a relative cubic Bezier curve command (c) to the path, which draws a curve to the specified relative coordinates using two control points.
Parameters
x1
The x-offset of the first control point.
y1
The y-offset of the first control point.
x2
The x-offset of the second control point.
y2
The y-offset of the second control point.
x
The x-offset of the end point.
y
The y-offset of the end point.