pub struct QuatMath {
pub x: f32,
pub y: f32,
pub z: f32,
pub w: f32,
}Expand description
A quaternion [x, y, z, w].
Fields§
§x: f32§y: f32§z: f32§w: f32Trait Implementations§
impl Copy for QuatMath
impl StructuralPartialEq for QuatMath
Auto Trait Implementations§
impl Freeze for QuatMath
impl RefUnwindSafe for QuatMath
impl Send for QuatMath
impl Sync for QuatMath
impl Unpin for QuatMath
impl UnsafeUnpin for QuatMath
impl UnwindSafe for QuatMath
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