[][src]Function oxygengine_physics_2d::prelude::ncollide2d::pipeline::interferences_with_ray

pub fn interferences_with_ray<N, Objects>(
    objects: &'a Objects,
    broad_phase: &'a impl BroadPhase<N, AABB<N>, <Objects as CollisionObjectSet<N>>::CollisionObjectHandle>,
    ray: &'b Ray<N>,
    max_toi: N,
    groups: &'b CollisionGroups
) -> InterferencesWithRay<'a, 'b, N, Objects>

Important traits for InterferencesWithRay<'a, 'b, N, Objects>

impl<'a, 'b, N, Objects> Iterator for InterferencesWithRay<'a, 'b, N, Objects> where
    N: RealField,
    Objects: CollisionObjectSet<N>, 
type Item = (<Objects as CollisionObjectSet<N>>::CollisionObjectHandle, &'a <Objects as CollisionObjectSet<N>>::CollisionObject, RayIntersection<N>);
where
    N: RealField,
    Objects: CollisionObjectSet<N>, 

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

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