* Quadratic Beizer Curve * @param {number} cx - Control point x * @param {number} cy - Control point y * @param {number} ax - Anchor x * @param {number} ay - Anchor y
(cx:number, cy:number, ax:number, ay:number)
| 69 | * @param {number} ay - Anchor y |
| 70 | */ |
| 71 | public curveTo(cx:number, cy:number, ax:number, ay:number):void { |
| 72 | this._evaluateBoundingBox(ax,ay); |
| 73 | this._evaluateBoundingBox(cx,cy); |
| 74 | this._callDrawMethod('curveTo', [cx, cy, ax, ay]); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Cubic Beizer Curve |
nothing calls this directly
no test coverage detected