pub struct Aabb3 {
pub min: Point3,
pub max: Point3,
}Expand description
3D axis-aligned bounding box.
Fields§
§min: Point3§max: Point3Implementations§
Trait Implementations§
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