OctreeNode constructor

OctreeNode([
  1. AABB? box
])

Implementation

OctreeNode([AABB? box]){
  this.box = box ?? AABB();
	}