Function ncollide3d::pipeline::glue::interferences_with_point [−][src]
pub fn interferences_with_point<'a, 'b, N, Objects>(
objects: &'a Objects,
broad_phase: &'a impl BroadPhase<N, AABB<N>, Objects::CollisionObjectHandle> + ?Sized,
point: &'b Point<N>,
groups: &'b CollisionGroups
) -> InterferencesWithPoint<'a, 'b, N, Objects>ⓘwhereNotable traits for InterferencesWithPoint<'a, 'b, N, Objects>
impl<'a, 'b, N: RealField, Objects> Iterator for InterferencesWithPoint<'a, 'b, N, Objects> where
N: RealField,
Objects: CollisionObjectSet<N>, type Item = (Objects::CollisionObjectHandle, &'a Objects::CollisionObject);
N: RealField,
Objects: CollisionObjectSet<N>,
Returns an iterator yielding all the collision objects containing the given point.
The result will only include collision objects in a group that can interact with the given groups
.