OctreeNode constructor

OctreeNode({
  1. OctreeNode? root,
  2. AABB? aabb,
})

Implementation

OctreeNode({
  this.root,
  AABB? aabb
}) {
  this.aabb = aabb?.clone() ?? AABB();
}