pub trait Collider {
    fn should_generate_contacts(&self, other: &Self) -> bool;
}
Expand description

Used to check if two shapes should be checked for collisions

Required Methods

Should shapes generate contact events

Implementations on Foreign Types

Implementors