pub enum ModelRotationOrder {
EulerXYZ = 0,
EulerXZY = 1,
EulerYZX = 2,
EulerYXZ = 3,
EulerZXY = 4,
EulerZYX = 5,
SphericXYZ = 6,
}Variants§
Trait Implementations§
Source§impl Clone for ModelRotationOrder
impl Clone for ModelRotationOrder
Source§fn clone(&self) -> ModelRotationOrder
fn clone(&self) -> ModelRotationOrder
Returns a duplicate 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 moreSource§impl Debug for ModelRotationOrder
impl Debug for ModelRotationOrder
Source§impl PartialEq for ModelRotationOrder
impl PartialEq for ModelRotationOrder
impl Copy for ModelRotationOrder
impl Eq for ModelRotationOrder
impl StructuralPartialEq for ModelRotationOrder
Auto Trait Implementations§
impl Freeze for ModelRotationOrder
impl RefUnwindSafe for ModelRotationOrder
impl Send for ModelRotationOrder
impl Sync for ModelRotationOrder
impl Unpin for ModelRotationOrder
impl UnsafeUnpin for ModelRotationOrder
impl UnwindSafe for ModelRotationOrder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more