pub struct Aabb {
pub min_x: f64,
pub min_y: f64,
pub min_z: f64,
pub max_x: f64,
pub max_y: f64,
pub max_z: f64,
}Expand description
An axis-aligned bounding box in world coordinates.
Fields§
§min_x: f64Minimum corner (lowest X, Y, Z).
min_y: f64Minimum Y.
min_z: f64Minimum Z.
max_x: f64Maximum corner (highest X, Y, Z).
max_y: f64Maximum Y.
max_z: f64Maximum Z.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Aabb
impl RefUnwindSafe for Aabb
impl Send for Aabb
impl Sync for Aabb
impl Unpin for Aabb
impl UnsafeUnpin for Aabb
impl UnwindSafe for Aabb
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more