[−][src]Trait ncollide2d::partitioning::Visitor
Trait implemented by visitor called during the traversal of a spatial partitioning data structure.
Required methods
fn visit(&mut self, bv: &BV, data: Option<&T>) -> VisitStatus
Execute an operation on the content of a node of the spatial partitioning structure.
Returns whether the traversal should continue on the node's children, if it should not continue on those children, or if the whole traversal should be exited early.
Implementors
impl<'a, N, T, BV> Visitor<T, BV> for BoundingVolumeInterferencesCollector<'a, N, T, BV> where
N: RealField,
T: Clone,
BV: BoundingVolume<N>,
[src]
N: RealField,
T: Clone,
BV: BoundingVolume<N>,
impl<'a, N, T, BV> Visitor<T, BV> for PointInterferencesCollector<'a, N, T> where
N: RealField,
T: Clone,
BV: PointQuery<N>,
[src]
N: RealField,
T: Clone,
BV: PointQuery<N>,
impl<'a, N, T, BV> Visitor<T, BV> for RayInterferencesCollector<'a, N, T> where
N: RealField,
T: Clone,
BV: RayCast<N>,
[src]
N: RealField,
T: Clone,
BV: RayCast<N>,