[][src]Module building_blocks_partition::octree

The Octree type is a memory-efficient set of points.

The typical workflow for using an Octree is to construct it from an Array3, then insert it into an OctreeDBVT in order to perform spatial queries like raycasting.

Structs

Octant

A cube-shaped extent which is an octant at some level of an octree. As a leaf node, it represents a totally full set of points.

Octree

A sparse set of voxel coordinates (3D integer points). Supports spatial queries.

Enums

VisitStatus

Traits

OctreeVisitor