CompressedQuadTree constructor
CompressedQuadTree(
- Rectangle boundary
Constructor initializes tree with given boundary boundary: The rectangular area this tree will cover
Implementation
CompressedQuadTree(this.boundary) {
_root = CompressedQuadTreeNode(boundary);
}