Trait bevy_math::bounding::BoundingVolume
source · pub trait BoundingVolume {
type Position: Clone + Copy + PartialEq;
type HalfSize;
// Required methods
fn center(&self) -> Self::Position;
fn half_size(&self) -> Self::HalfSize;
fn visible_area(&self) -> f32;
fn contains(&self, other: &Self) -> bool;
fn merge(&self, other: &Self) -> Self;
fn grow(&self, amount: Self::HalfSize) -> Self;
fn shrink(&self, amount: Self::HalfSize) -> Self;
}
Expand description
A trait that generalizes different bounding volumes. Bounding volumes are simplified shapes that are used to get simpler ways to check for overlapping elements or finding intersections.
This trait supports both 2D and 3D bounding shapes.
Required Associated Types§
Required Methods§
sourcefn visible_area(&self) -> f32
fn visible_area(&self) -> f32
Computes the visible surface area of the bounding volume. This method can be useful to make decisions about merging bounding volumes, using a Surface Area Heuristic.
For 2D shapes this would simply be the area of the shape. For 3D shapes this would usually be half the area of the shape.
sourcefn merge(&self, other: &Self) -> Self
fn merge(&self, other: &Self) -> Self
Computes the smallest bounding volume that contains both self
and other
.
Object Safety§
This trait is not object safe.