* Move to point * @param {number} x - x coordinate * @param {number} y - y coordinate
(x:number, y:number)
| 57 | * @param {number} y - y coordinate |
| 58 | */ |
| 59 | public moveTo(x:number, y:number):void { |
| 60 | this._evaluateBoundingBox(x,y); |
| 61 | this._callDrawMethod('moveTo', [x, y]); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Quadratic Beizer Curve |
no test coverage detected