pub struct Vec3(pub f32, pub f32, pub f32);
Expand description
Vector for use in the bgjk
function
Uses cartesian spatial dimensions in the order x, y, z.
Tuple Fields§
§0: f32
§1: f32
§2: f32
Trait Implementations§
impl Copy for Vec3
impl Eq for Vec3
Auto Trait Implementations§
impl Freeze for Vec3
impl RefUnwindSafe for Vec3
impl Send for Vec3
impl Sync for Vec3
impl Unpin for Vec3
impl UnwindSafe for Vec3
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