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

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§