MCPcopy Index your code
hub / github.com/jabbany/CommentCoreLibrary / lineTo

Method lineTo

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

* Line to point * @param {number} x - x coordinate * @param {number} y - y coordinate

(x:number, y:number)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

_evaluateBoundingBoxMethod · 0.95
_callDrawMethodMethod · 0.95

Tested by

no test coverage detected