Struct ami::Octree[][src]

pub struct Octree<T: Collider> { /* fields omitted */ }

An octree is a DAG that can quickly search for points in 3D space.

The bounding box of the root node contains all points in the octree. If a point outside the bounding box is added, a new root node is created which contains the old root as one of its octants. This process is repeated until the point is contained.

The nodes are stored in a vector, and are indexed using a 32-bit node ID. This saves memory over using pointers on 64-bit systems. Node ID 1 is the first node in the vector.

Methods

impl<T> Octree<T> where
    T: Collider
[src]

Create a new octree

Clear the octree.

Add a point in the octree

Remove a point from the octree

Trait Implementations

impl<T> Index<Id> for Octree<T> where
    T: Collider
[src]

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl<T> IndexMut<Id> for Octree<T> where
    T: Collider
[src]

Performs the mutable indexing (container[index]) operation.

impl<T> Display for Octree<T> where
    T: Collider
[src]

Formats the value using the given formatter. Read more

impl<T> Debug for Octree<T> where
    T: Collider
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for Octree<T> where
    T: Send

impl<T> Sync for Octree<T> where
    T: Sync