curveTo method
dynamic
curveTo(
- dynamic x1,
- dynamic y1,
- dynamic x2,
- dynamic y2,
- dynamic x,
- dynamic y,
Draws cubic curve @function bezierCurveTo @memberof opentype.Path.prototype @param {number} x1 - x of control 1 @param {number} y1 - y of control 1 @param {number} x2 - x of control 2 @param {number} y2 - y of control 2 @param {number} x - x of path point @param {number} y - y of path point @see curveTo
Implementation
curveTo(x1, y1, x2, y2, x, y) {
bezierCurveTo(x1, y1, x2, y2, x, y);
}