pub enum RotationSequence {
ZXZ,
XYX,
YZY,
ZYZ,
XZX,
YXY,
XYZ,
YZX,
ZXY,
XZY,
ZYX,
YXZ,
}Expand description
Represents 12 different rotations.
Each variant reads from left to right.
For example, RotationSequence::XYZ represents rotation around the X axis first,
then the Y axis, and finally the Z axis in that order (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