pub trait BroadPhase<A>: Sendwhere
    A: HasBound,
{ fn find_potentials(&mut self, shapes: &mut [A]) -> Vec<(usize, usize)>; }
Expand description

Broad phase

Type parameters:

  • A: Shape type, must be able to return its bounding volume

Required Methods

Compute potential collider pairs

Implementations on Foreign Types

Implementors