pub enum RotationSequence {
ZXZ,
XYX,
YZY,
ZYZ,
XZX,
YXY,
XYZ,
YZX,
ZXY,
XZY,
ZYX,
YXZ,
}
Expand description
Specifies the rotation sequence of Euler angles.
Each variant reads from left to right.
For example, RotationSequence::XYZ
represents first a rotation
around the X axis, then around the Y axis, and finally around
the Z axis (X —> Y —> Z).
Variants§
Trait Implementations§
source§impl Clone for RotationSequence
impl Clone for RotationSequence
source§fn clone(&self) -> RotationSequence
fn clone(&self) -> RotationSequence
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more