(x, y, x0, y0, x1, y1)
| 135863 | } |
| 135864 | exports.default = quadtree; |
| 135865 | function Quadtree(x, y, x0, y0, x1, y1) { |
| 135866 | this._x = x; |
| 135867 | this._y = y; |
| 135868 | this._x0 = x0; |
| 135869 | this._y0 = y0; |
| 135870 | this._x1 = x1; |
| 135871 | this._y1 = y1; |
| 135872 | this._root = undefined; |
| 135873 | } |
| 135874 | function leaf_copy(leaf) { |
| 135875 | var copy = { |
| 135876 | data: leaf.data |
nothing calls this directly
no outgoing calls
no test coverage detected