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

Method _regioncode

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

Source from the content-addressed store, hash-verified

140670 return (x === this.xmin ? 0b0001 : x === this.xmax ? 0b0010 : 0b0000) | (y === this.ymin ? 0b0100 : y === this.ymax ? 0b1000 : 0b0000);
140671 }
140672 _regioncode(x, y) {
140673 return (x < this.xmin ? 0b0001 : x > this.xmax ? 0b0010 : 0b0000) | (y < this.ymin ? 0b0100 : y > this.ymax ? 0b1000 : 0b0000);
140674 }
140675}
140676exports.default = Voronoi;
140677

Callers 3

_renderSegmentMethod · 0.95
_clipFiniteMethod · 0.95
_clipSegmentMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected