MCPcopy Create free account
hub / github.com/microsoft/SandDance / Node

Function Node

docs/app/js/sanddance-app.js:102111–102121  ·  view source on GitHub ↗
(i, x, y)

Source from the content-addressed store, hash-verified

102109 if (p.nextZ) p.nextZ.prevZ = p.prevZ;
102110}
102111function Node(i, x, y) {
102112 this.i = i;
102113 this.x = x;
102114 this.y = y;
102115 this.prev = null;
102116 this.next = null;
102117 this.z = null;
102118 this.prevZ = null;
102119 this.nextZ = null;
102120 this.steiner = false;
102121}
102122
102123},{"./polygon-utils":"4zyzk","@parcel/transformer-js/src/esmodule-helpers.js":"jA2du"}],"1I8px":[function(require,module,exports) {
102124var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected