Enum graphene::EulerOrder[][src]

#[non_exhaustive]
pub enum EulerOrder {
Show 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, // some variants omitted
}
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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

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

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

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

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

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

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.