pub trait BVTTVisitor<B, BV> {
    fn visit_internal_internal(&mut self, _: &BV, _: &BV) -> bool;
    fn visit_leaf_leaf(&mut self, _: &B, _: &BV, _: &B, _: &BV);
    fn visit_internal_leaf(&mut self, _: &BV, _: &B, _: &BV) -> bool;
    fn visit_leaf_internal(&mut self, _: &B, _: &BV, _: &BV) -> bool;
}
Expand description

Visitor for the Bounding Volume Traversal Tree.

Required Methods§

Visit two internal nodes.

Visit two leaves.

Visit one internal node and one leaf.

Visit one leaf and on internal node.

Implementors§