(x, y)
| 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 | } |
| 140676 | exports.default = Voronoi; |
| 140677 |
no outgoing calls
no test coverage detected