* Draws an ellipse * @param {number} cx - center x * @param {number} cy - center y * @param {number} w - width * @param {number} h - height
(cx:number, cy:number, w:number, h:number)
| 153 | * @param {number} h - height |
| 154 | */ |
| 155 | public drawEllipse(cx:number, cy:number, w:number, h:number):void { |
| 156 | this._evaluateBoundingBox(cx - w/2,cy - h/2); |
| 157 | this._evaluateBoundingBox(cx + w/2,cy + h/2); |
| 158 | this._callDrawMethod('drawEllipse', [cx + w / 2, cy + h / 2, w / 2, h / 2]); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Draws a rounded rectangle |
nothing calls this directly
no test coverage detected