#[repr(C)]pub struct Euler {
pub roll: f32,
pub pitch: f32,
pub yaw: f32,
}
Expand description
Euler angles.
Roll, pitch, and yaw correspond to rotations around X, Y, and Z respectively.
Fields§
§roll: f32
§pitch: f32
§yaw: f32
Trait Implementations§
Source§impl From<Euler> for FusionEuler
impl From<Euler> for FusionEuler
Source§impl From<FusionEuler> for Euler
impl From<FusionEuler> for Euler
Source§fn from(value: FusionEuler) -> Self
fn from(value: FusionEuler) -> Self
Converts to this type from the input type.
Source§impl PartialOrd for Euler
impl PartialOrd for Euler
impl Copy for Euler
impl StructuralPartialEq for Euler
Auto Trait Implementations§
impl Freeze for Euler
impl RefUnwindSafe for Euler
impl Send for Euler
impl Sync for Euler
impl Unpin for Euler
impl UnwindSafe for Euler
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