* Draws a circle * @param {number} x - center x * @param {number} y - center y * @param {number} r - radius
(x:number, y:number, r:number)
| 140 | * @param {number} r - radius |
| 141 | */ |
| 142 | public drawCircle(x:number, y:number, r:number):void { |
| 143 | this._evaluateBoundingBox(x - r,y - r); |
| 144 | this._evaluateBoundingBox(x + r,y + r); |
| 145 | this._callDrawMethod('drawCircle', [x, y , r]); |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Draws an ellipse |
nothing calls this directly
no test coverage detected