logo
pub trait NodeHandler<T: Aabb> {
    fn handle_node(
        &mut self,
        axis: AxisDyn,
        bots: AabbPin<&mut [T]>,
        is_leaf: bool
    ); fn handle_children(
        &mut self,
        floop: HandleChildrenArgs<'_, T>,
        is_left: bool
    ); }
Expand description

Abstract over sorted and non sorted trees

Required Methods

Implementors