Enum ncollide2d::partitioning::BVTNode[][src]

pub enum BVTNode<B, BV> {
    Internal(BV, Box<BVTNode<B, BV>>, Box<BVTNode<B, BV>>),
    Leaf(BV, B),
}

A node of the bounding volume tree.

Variants

An internal node.

A leaf.

Methods

impl<B, BV> BVTNode<B, BV>
[src]

The bounding volume of this node.

Trait Implementations

impl<B: Clone, BV: Clone> Clone for BVTNode<B, BV>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<B, BV> Send for BVTNode<B, BV> where
    B: Send,
    BV: Send

impl<B, BV> Sync for BVTNode<B, BV> where
    B: Sync,
    BV: Sync