[−][src]Struct mint::EulerAngles
Abstract set of Euler angles in 3D space. The basis of angles
is defined by the generic parameter B
.
Note: there are multiple notations of Euler angles. They are split in two groups:
- intrinsic (also known as "Tait-Bryan angles"): rotate around local axis
- extrinsic (also known as "Proper Euler angles"): rotate around world axis For each interpretation, different axis may be chosen in different order.
Fields
a: T
First angle of rotation in range [-pi, pi] (pitch).
b: T
Second angle of rotation around in range [-pi/2, pi/2] (yaw).
c: T
Third angle of rotation in range [-pi, pi] (roll).
marker: PhantomData<B>
Marker for the phantom basis.
Trait Implementations
impl<T: Copy, B: Copy> Copy for EulerAngles<T, B>
[src]
impl<T: Eq, B: Eq> Eq for EulerAngles<T, B>
[src]
impl<T: Clone, B: Clone> Clone for EulerAngles<T, B>
[src]
fn clone(&self) -> EulerAngles<T, B>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<T: PartialOrd, B: PartialOrd> PartialOrd<EulerAngles<T, B>> for EulerAngles<T, B>
[src]
fn partial_cmp(&self, other: &EulerAngles<T, B>) -> Option<Ordering>
[src]
fn lt(&self, other: &EulerAngles<T, B>) -> bool
[src]
fn le(&self, other: &EulerAngles<T, B>) -> bool
[src]
fn gt(&self, other: &EulerAngles<T, B>) -> bool
[src]
fn ge(&self, other: &EulerAngles<T, B>) -> bool
[src]
impl<T: PartialEq, B: PartialEq> PartialEq<EulerAngles<T, B>> for EulerAngles<T, B>
[src]
fn eq(&self, other: &EulerAngles<T, B>) -> bool
[src]
fn ne(&self, other: &EulerAngles<T, B>) -> bool
[src]
impl<T: Clone, B> From<[T; 3]> for EulerAngles<T, B>
[src]
impl<T> From<EulerAngles<T, IntraXYZ>> for EulerAngles<T, ExtraZYX>
[src]
fn from(other: EulerAngles<T, IntraXYZ>) -> Self
[src]
impl<T> From<EulerAngles<T, ExtraZYX>> for EulerAngles<T, IntraXYZ>
[src]
fn from(other: EulerAngles<T, ExtraZYX>) -> Self
[src]
impl<T> From<EulerAngles<T, IntraZXZ>> for EulerAngles<T, ExtraZXZ>
[src]
fn from(other: EulerAngles<T, IntraZXZ>) -> Self
[src]
impl<T> From<EulerAngles<T, ExtraZXZ>> for EulerAngles<T, IntraZXZ>
[src]
fn from(other: EulerAngles<T, ExtraZXZ>) -> Self
[src]
impl<T> From<EulerAngles<T, IntraZYX>> for EulerAngles<T, ExtraXYZ>
[src]
fn from(other: EulerAngles<T, IntraZYX>) -> Self
[src]
impl<T> From<EulerAngles<T, ExtraXYZ>> for EulerAngles<T, IntraZYX>
[src]
fn from(other: EulerAngles<T, ExtraXYZ>) -> Self
[src]
impl<T, B> Into<[T; 3]> for EulerAngles<T, B>
[src]
impl<T: Ord, B: Ord> Ord for EulerAngles<T, B>
[src]
fn cmp(&self, other: &EulerAngles<T, B>) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self
[src]
clamp
)Restrict a value to a certain interval. Read more
impl<T: Hash, B: Hash> Hash for EulerAngles<T, B>
[src]
fn hash<__HTB: Hasher>(&self, state: &mut __HTB)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl<T: Debug, B: Debug> Debug for EulerAngles<T, B>
[src]
Auto Trait Implementations
impl<T, B> Unpin for EulerAngles<T, B> where
B: Unpin,
T: Unpin,
B: Unpin,
T: Unpin,
impl<T, B> Sync for EulerAngles<T, B> where
B: Sync,
T: Sync,
B: Sync,
T: Sync,
impl<T, B> Send for EulerAngles<T, B> where
B: Send,
T: Send,
B: Send,
T: Send,
impl<T, B> UnwindSafe for EulerAngles<T, B> where
B: UnwindSafe,
T: UnwindSafe,
B: UnwindSafe,
T: UnwindSafe,
impl<T, B> RefUnwindSafe for EulerAngles<T, B> where
B: RefUnwindSafe,
T: RefUnwindSafe,
B: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,