PathBuilder.quadTo
void quadTo(float x1, float y1, float x2, float y2)Adds a C3A9zier_curve">quadratic Bézier curve from the current point to x2, y2 with x1, y1 as the control point.
After this, x2, y2 will be the new current point.
Parameters
x1 | x coordinate of control point |
y1 | y coordinate of control point |
x2 | x coordinate of the end of the curve |
y2 | y coordinate of the end of the curve |