Trait bevy_math::bounding::IntersectsVolume
source · pub trait IntersectsVolume<Volume: BoundingVolume> {
// Required method
fn intersects(&self, volume: &Volume) -> bool;
}
Expand description
A trait that generalizes intersection tests against a volume. Intersection tests can be used for a variety of tasks, for example:
- Raycasting
- Testing for overlap
- Checking if an object is within the view frustum of a camera
Required Methods§
sourcefn intersects(&self, volume: &Volume) -> bool
fn intersects(&self, volume: &Volume) -> bool
Check if a volume intersects with this intersection test