Octree constructor

Octree([
  1. Box3? box
])

Implementation

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