Trait collision::dbvt::Visitor [] [src]

pub trait Visitor {
    type Bound;
    type Result;
    fn accept(
        &mut self,
        bound: &Self::Bound,
        is_leaf: bool
    ) -> Option<Self::Result>; }

Visitor trait used for querying the tree.

Associated Types

Bounding volume accepted by the visitor

Result returned by the acceptance test

Required Methods

Acceptance test function

Implementors