pub enum EulerConvention {
ZYX,
ZXZ,
XYZ,
}Expand description
Euler angle convention for rotation composition.
Supports common conventions: ZYX (aerospace/Tait-Bryan), ZXZ (classical), XYZ, etc.
Variants§
ZYX
Aerospace (yaw-pitch-roll): R = Rz(φ) · Ry(θ) · Rx(ψ)
ZXZ
Classical: R = Rz(φ) · Rx(θ) · Rz(ψ)
XYZ
Roll-pitch-yaw: R = Rx(φ) · Ry(θ) · Rz(ψ)
Trait Implementations§
Source§impl Clone for EulerConvention
impl Clone for EulerConvention
impl Copy for EulerConvention
Source§impl Debug for EulerConvention
impl Debug for EulerConvention
impl Eq for EulerConvention
Source§impl PartialEq for EulerConvention
impl PartialEq for EulerConvention
impl StructuralPartialEq for EulerConvention
Auto Trait Implementations§
impl Freeze for EulerConvention
impl RefUnwindSafe for EulerConvention
impl Send for EulerConvention
impl Sync for EulerConvention
impl Unpin for EulerConvention
impl UnsafeUnpin for EulerConvention
impl UnwindSafe for EulerConvention
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more