Octree constructor

Octree([
  1. BoundingBox? box
])

Implementation

Octree([BoundingBox? box]){
    this.box = box ?? BoundingBox();
	triangles = [];
	subTrees = [];
}