pub fn interferences_with_aabb<N, Objects, 'a, 'b>(
    objects: &'a Objects,
    broad_phase: &'a (impl BroadPhase<N, AABB<N>, <Objects as CollisionObjectSet<N>>::CollisionObjectHandle> + ?Sized),
    aabb: &AABB<N>,
    groups: &'b CollisionGroups
) -> InterferencesWithAABB<'a, 'b, N, Objects> where
    N: RealField + Copy,
    Objects: CollisionObjectSet<N>,
Expand description

Returns an iterator yielding all the collision objects with an AABB intersecting with the given AABB.

The result will only include collision objects in a group that can interact with the given groups.