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