Octree constructor

Octree({
  1. AABB? aabb,
  2. int maxDepth = 8,
})

@param aabb The total AABB of the tree

Implementation

Octree({
  AABB? aabb,
  int maxDepth = 8
}):super(aabb:aabb){
  this.maxDepth = maxDepth;
}