(leaf)
| 135872 | this._root = undefined; |
| 135873 | } |
| 135874 | function leaf_copy(leaf) { |
| 135875 | var copy = { |
| 135876 | data: leaf.data |
| 135877 | }, next = copy; |
| 135878 | while(leaf = leaf.next)next = next.next = { |
| 135879 | data: leaf.data |
| 135880 | }; |
| 135881 | return copy; |
| 135882 | } |
| 135883 | var treeProto = quadtree.prototype = Quadtree.prototype; |
| 135884 | treeProto.copy = function() { |
| 135885 | var copy = new Quadtree(this._x, this._y, this._x0, this._y0, this._x1, this._y1), node = this._root, nodes, child; |