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

Method curveTo

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

* Quadratic Beizer Curve * @param {number} cx - Control point x * @param {number} cy - Control point y * @param {number} ax - Anchor x * @param {number} ay - Anchor y

(cx:number, cy:number, ax:number, ay:number)

Source from the content-addressed store, hash-verified

69 * @param {number} ay - Anchor y
70 */
71 public curveTo(cx:number, cy:number, ax:number, ay:number):void {
72 this._evaluateBoundingBox(ax,ay);
73 this._evaluateBoundingBox(cx,cy);
74 this._callDrawMethod('curveTo', [cx, cy, ax, ay]);
75 }
76
77 /**
78 * Cubic Beizer Curve

Callers

nothing calls this directly

Calls 2

_evaluateBoundingBoxMethod · 0.95
_callDrawMethodMethod · 0.95

Tested by

no test coverage detected