Struct qilin::EulerAngles

source ·
#[repr(C)]
pub struct EulerAngles<T, B> { pub a: T, pub b: T, pub c: T, pub marker: PhantomData<B>, }
Expand description

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§

source§

impl<T, B> Clone for EulerAngles<T, B>where T: Clone, B: Clone,

source§

fn clone(&self) -> EulerAngles<T, B>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T, B> Debug for EulerAngles<T, B>where T: Debug, B: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'de, T, B> Deserialize<'de> for EulerAngles<T, B>where T: Deserialize<'de>,

source§

fn deserialize<S>( deserializer: S ) -> Result<EulerAngles<T, B>, <S as Deserializer<'de>>::Error>where S: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T, B> From<[T; 3]> for EulerAngles<T, B>

source§

fn from(_: [T; 3]) -> EulerAngles<T, B>

Converts to this type from the input type.
source§

impl<T> From<EulerAngles<T, ExtraXYZ>> for EulerAngles<T, IntraZYX>

source§

fn from(other: EulerAngles<T, ExtraXYZ>) -> EulerAngles<T, IntraZYX>

Converts to this type from the input type.
source§

impl<T> From<EulerAngles<T, ExtraZXZ>> for EulerAngles<T, IntraZXZ>

source§

fn from(other: EulerAngles<T, ExtraZXZ>) -> EulerAngles<T, IntraZXZ>

Converts to this type from the input type.
source§

impl<T> From<EulerAngles<T, ExtraZYX>> for EulerAngles<T, IntraXYZ>

source§

fn from(other: EulerAngles<T, ExtraZYX>) -> EulerAngles<T, IntraXYZ>

Converts to this type from the input type.
source§

impl<T> From<EulerAngles<T, IntraXYZ>> for EulerAngles<T, ExtraZYX>

source§

fn from(other: EulerAngles<T, IntraXYZ>) -> EulerAngles<T, ExtraZYX>

Converts to this type from the input type.
source§

impl<T> From<EulerAngles<T, IntraZXZ>> for EulerAngles<T, ExtraZXZ>

source§

fn from(other: EulerAngles<T, IntraZXZ>) -> EulerAngles<T, ExtraZXZ>

Converts to this type from the input type.
source§

impl<T> From<EulerAngles<T, IntraZYX>> for EulerAngles<T, ExtraXYZ>

source§

fn from(other: EulerAngles<T, IntraZYX>) -> EulerAngles<T, ExtraXYZ>

Converts to this type from the input type.
source§

impl<T, B> Hash for EulerAngles<T, B>where T: Hash, B: Hash,

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<T, B> Ord for EulerAngles<T, B>where T: Ord, B: Ord,

source§

fn cmp(&self, other: &EulerAngles<T, B>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<T, B> PartialEq<EulerAngles<T, B>> for EulerAngles<T, B>where T: PartialEq<T>, B: PartialEq<B>,

source§

fn eq(&self, other: &EulerAngles<T, B>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T, B> PartialOrd<EulerAngles<T, B>> for EulerAngles<T, B>where T: PartialOrd<T>, B: PartialOrd<B>,

source§

fn partial_cmp(&self, other: &EulerAngles<T, B>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<T, B> Serialize for EulerAngles<T, B>where T: Serialize,

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T, B> Copy for EulerAngles<T, B>where T: Copy, B: Copy,

source§

impl<T, B> Eq for EulerAngles<T, B>where T: Eq, B: Eq,

source§

impl<T, B> StructuralEq for EulerAngles<T, B>

source§

impl<T, B> StructuralPartialEq for EulerAngles<T, B>

Auto Trait Implementations§

§

impl<T, B> RefUnwindSafe for EulerAngles<T, B>where B: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, B> Send for EulerAngles<T, B>where B: Send, T: Send,

§

impl<T, B> Sync for EulerAngles<T, B>where B: Sync, T: Sync,

§

impl<T, B> Unpin for EulerAngles<T, B>where B: Unpin, T: Unpin,

§

impl<T, B> UnwindSafe for EulerAngles<T, B>where B: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,