MCPcopy
hub / github.com/jabbany/CommentCoreLibrary / drawCircle

Method drawCircle

src/scripting/api/Display/Graphics.ts:142–146  ·  view source on GitHub ↗

* Draws a circle * @param {number} x - center x * @param {number} y - center y * @param {number} r - radius

(x:number, y:number, r:number)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

_evaluateBoundingBoxMethod · 0.95
_callDrawMethodMethod · 0.95

Tested by

no test coverage detected