Trait parry3d::partitioning::SimdVisitor[][src]

pub trait SimdVisitor<T, SimdBV> {
    fn visit(
        &mut self,
        bv: &SimdBV,
        data: Option<[Option<&T>; 4]>
    ) -> SimdVisitStatus; }
Expand description

Trait implemented by visitor called during the traversal of a spatial partitioning data structure.

Required methods

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