CompressedQuadTree constructor

CompressedQuadTree(
  1. Rectangle boundary
)

Constructor initializes tree with given boundary boundary: The rectangular area this tree will cover

Implementation

CompressedQuadTree(this.boundary) {
  _root = CompressedQuadTreeNode(boundary);
}