pub struct Aabb3 {
pub min: Vec3,
pub max: Vec3,
}Expand description
3-D axis-aligned bounding box.
Fields§
§min: Vec3Minimum corner (inclusive).
max: Vec3Maximum corner (inclusive).
Implementations§
Trait Implementations§
impl Copy for Aabb3
impl StructuralPartialEq for Aabb3
Auto Trait Implementations§
impl Freeze for Aabb3
impl RefUnwindSafe for Aabb3
impl Send for Aabb3
impl Sync for Aabb3
impl Unpin for Aabb3
impl UnsafeUnpin for Aabb3
impl UnwindSafe for Aabb3
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