* Line to point * @param {number} x - x coordinate * @param {number} y - y coordinate
(x:number, y:number)
| 47 | * @param {number} y - y coordinate |
| 48 | */ |
| 49 | public lineTo(x:number, y:number):void { |
| 50 | this._evaluateBoundingBox(x,y); |
| 51 | this._callDrawMethod('lineTo', [x, y]); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Move to point |
nothing calls this directly
no test coverage detected