pub struct AABB {
pub epsilon: f32,
pub x0: f32,
pub x1: f32,
pub y0: f32,
pub y1: f32,
pub z0: f32,
pub z1: f32,
}
Fields§
§epsilon: f32
§x0: f32
§x1: f32
§y0: f32
§y1: f32
§z0: f32
§z1: f32
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 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