#[repr(C)]pub struct sh2_Quaternion {
pub x: f64,
pub y: f64,
pub z: f64,
pub w: f64,
}Expand description
@brief Quaternion (double precision floating point representation.)
See the SH-2 Reference Manual for more detail.
Fields§
§x: f64§y: f64§z: f64§w: f64Trait Implementations§
Source§impl Clone for sh2_Quaternion
impl Clone for sh2_Quaternion
Source§fn clone(&self) -> sh2_Quaternion
fn clone(&self) -> sh2_Quaternion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for sh2_Quaternion
impl Debug for sh2_Quaternion
impl Copy for sh2_Quaternion
Auto Trait Implementations§
impl Freeze for sh2_Quaternion
impl RefUnwindSafe for sh2_Quaternion
impl Send for sh2_Quaternion
impl Sync for sh2_Quaternion
impl Unpin for sh2_Quaternion
impl UnwindSafe for sh2_Quaternion
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