QuadTree<T> constructor

QuadTree<T>(
  1. OffsetFun<T> xFun,
  2. OffsetFun<T> yFun,
  3. num _x0,
  4. num _y0,
  5. num _x1,
  6. num _y1,
)

Implementation

QuadTree(this.xFun, this.yFun, this._x0, this._y0, this._x1, this._y1) {
  _root = null;
}