OctreeBlock<T> constructor

OctreeBlock<T>(
  1. Vector3 minPoint,
  2. Vector3 maxPoint,
  3. num capacity,
  4. num depth,
  5. num maxDepth,
  6. void creationFunc(
    1. T entry,
    2. OctreeBlock<T> block
    ),
)

Implementation

external OctreeBlock(Vector3 minPoint, Vector3 maxPoint, num capacity, num depth, num maxDepth, void Function(T entry, OctreeBlock<T> block) creationFunc);