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