pub struct EulerAngles {
pub psi: f32,
pub theta: f32,
pub phi: f32,
}
Expand description
Implemented according to IEEE 1278.1-2012 §6.2.32
Fields§
§psi: f32
Angle of rotation about the Z-axis
theta: f32
Angle of rotation about the Y-axis
phi: f32
Angle of rotation about the X-axis
Implementations§
Trait Implementations§
Source§impl Clone for EulerAngles
impl Clone for EulerAngles
Source§fn clone(&self) -> EulerAngles
fn clone(&self) -> EulerAngles
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 EulerAngles
impl Debug for EulerAngles
Source§impl Default for EulerAngles
impl Default for EulerAngles
Source§fn default() -> EulerAngles
fn default() -> EulerAngles
Returns the “default value” for a type. Read more
impl Copy for EulerAngles
Auto Trait Implementations§
impl Freeze for EulerAngles
impl RefUnwindSafe for EulerAngles
impl Send for EulerAngles
impl Sync for EulerAngles
impl Unpin for EulerAngles
impl UnwindSafe for EulerAngles
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