Enum graphene::EulerOrder

source ·
#[non_exhaustive]
pub enum EulerOrder {
Show 31 variants Default, Xyz, Yzx, Zxy, Xzy, Yxz, Zyx, Sxyz, Sxyx, Sxzy, Sxzx, Syzx, Syzy, Syxz, Syxy, Szxy, Szxz, Szyx, Szyz, Rzyx, Rxyx, Ryzx, Rxzx, Rxzy, Ryzy, Rzxy, Ryxy, Ryxz, Rzxz, Rxyz, Rzyz,
}
Expand description

Specify the order of the rotations on each axis.

The Default value is special, and is used as an alias for one of the other orders.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Default

Rotate in the default order; the default order is one of the following enumeration values

§

Xyz

Rotate in the X, Y, and Z order. Deprecated in Graphene 1.10, it’s an alias for Sxyz

§

Yzx

Rotate in the Y, Z, and X order. Deprecated in Graphene 1.10, it’s an alias for Syzx

§

Zxy

Rotate in the Z, X, and Y order. Deprecated in Graphene 1.10, it’s an alias for Szxy

§

Xzy

Rotate in the X, Z, and Y order. Deprecated in Graphene 1.10, it’s an alias for Sxzy

§

Yxz

Rotate in the Y, X, and Z order. Deprecated in Graphene 1.10, it’s an alias for Syxz

§

Zyx

Rotate in the Z, Y, and X order. Deprecated in Graphene 1.10, it’s an alias for Szyx

§

Sxyz

Defines a static rotation along the X, Y, and Z axes (Since: 1.10)

§

Sxyx

Defines a static rotation along the X, Y, and X axes (Since: 1.10)

§

Sxzy

Defines a static rotation along the X, Z, and Y axes (Since: 1.10)

§

Sxzx

Defines a static rotation along the X, Z, and X axes (Since: 1.10)

§

Syzx

Defines a static rotation along the Y, Z, and X axes (Since: 1.10)

§

Syzy

Defines a static rotation along the Y, Z, and Y axes (Since: 1.10)

§

Syxz

Defines a static rotation along the Y, X, and Z axes (Since: 1.10)

§

Syxy

Defines a static rotation along the Y, X, and Y axes (Since: 1.10)

§

Szxy

Defines a static rotation along the Z, X, and Y axes (Since: 1.10)

§

Szxz

Defines a static rotation along the Z, X, and Z axes (Since: 1.10)

§

Szyx

Defines a static rotation along the Z, Y, and X axes (Since: 1.10)

§

Szyz

Defines a static rotation along the Z, Y, and Z axes (Since: 1.10)

§

Rzyx

Defines a relative rotation along the Z, Y, and X axes (Since: 1.10)

§

Rxyx

Defines a relative rotation along the X, Y, and X axes (Since: 1.10)

§

Ryzx

Defines a relative rotation along the Y, Z, and X axes (Since: 1.10)

§

Rxzx

Defines a relative rotation along the X, Z, and X axes (Since: 1.10)

§

Rxzy

Defines a relative rotation along the X, Z, and Y axes (Since: 1.10)

§

Ryzy

Defines a relative rotation along the Y, Z, and Y axes (Since: 1.10)

§

Rzxy

Defines a relative rotation along the Z, X, and Y axes (Since: 1.10)

§

Ryxy

Defines a relative rotation along the Y, X, and Y axes (Since: 1.10)

§

Ryxz

Defines a relative rotation along the Y, X, and Z axes (Since: 1.10)

§

Rzxz

Defines a relative rotation along the Z, X, and Z axes (Since: 1.10)

§

Rxyz

Defines a relative rotation along the X, Y, and Z axes (Since: 1.10)

§

Rzyz

Defines a relative rotation along the Z, Y, and Z axes (Since: 1.10)

Trait Implementations§

source§

impl Clone for EulerOrder

source§

fn clone(&self) -> EulerOrder

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 Debug for EulerOrder

source§

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

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

impl Hash for EulerOrder

source§

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

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 Ord for EulerOrder

source§

fn cmp(&self, other: &EulerOrder) -> Ordering

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

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

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

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

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

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

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

impl PartialEq for EulerOrder

source§

fn eq(&self, other: &EulerOrder) -> 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 PartialOrd for EulerOrder

source§

fn partial_cmp(&self, other: &EulerOrder) -> 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 Copy for EulerOrder

source§

impl Eq for EulerOrder

source§

impl StructuralPartialEq for EulerOrder

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 T
where 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 T
where 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 T
where 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 T
where 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.