[][src]Trait ncollide3d::partitioning::BVTVisitor

pub trait BVTVisitor<B, BV> {
    fn visit_internal(&mut self, _: &BV) -> bool;
fn visit_leaf(&mut self, _: &B, _: &BV); }

Visitor of Bounding Volume Trees.

Required Methods

Visits an internal node. Returns true if the internal node children have to be visited too.

Visits a leaf.

Implementors

impl<'a, N, B, BV> BVTVisitor<B, BV> for ncollide3d::bounding_volume::BoundingVolumeInterferencesCollector<'a, N, B, BV> where
    N: Real,
    B: Clone,
    BV: BoundingVolume<N>, 
[src]

impl<'a, N, B, BV> BVTVisitor<B, BV> for ncollide3d::partitioning::BoundingVolumeInterferencesCollector<'a, N, B, BV> where
    N: Real,
    B: Clone,
    BV: BoundingVolume<N>, 
[src]

impl<'a, N, B, BV> BVTVisitor<B, BV> for PointInterferencesCollector<'a, N, B> where
    N: Real,
    B: Clone,
    BV: PointQuery<N>, 
[src]

impl<'a, N, B, BV> BVTVisitor<B, BV> for RayInterferencesCollector<'a, N, B> where
    N: Real,
    B: Clone,
    BV: RayCast<N>, 
[src]