pub enum Hand {
LH,
RH,
}Expand description
Handedness of the coordinate system.
Variants§
LH
Left-handed coordinate system.
Mnemonic (left hand): Thumb along +X (to the right), index finger along +Y (up), middle finger along +Z.
RH
Right-handed coordinate system.
Mnemonic (right hand): Thumb along +X (to the right), index finger along +Y (up), middle finger along +Z.
Trait Implementations§
impl Copy for Hand
impl Eq for Hand
impl StructuralPartialEq for Hand
Auto Trait Implementations§
impl Freeze for Hand
impl RefUnwindSafe for Hand
impl Send for Hand
impl Sync for Hand
impl Unpin for Hand
impl UnsafeUnpin for Hand
impl UnwindSafe for Hand
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