* Draw a rectangle * @param {number} x - x coordinate * @param {number} y - y coordinate * @param {number} w - width * @param {number} h - height
(x:number, y:number, w:number, h:number)
| 128 | * @param {number} h - height |
| 129 | */ |
| 130 | public drawRect(x:number, y:number, w:number, h:number):void { |
| 131 | this._evaluateBoundingBox(x,y); |
| 132 | this._evaluateBoundingBox(x + w,y + h); |
| 133 | this._callDrawMethod('drawRect', [x, y, w, h]); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Draws a circle |
nothing calls this directly
no test coverage detected