pub enum GizmoAxis {
X,
Y,
Z,
XY,
XZ,
YZ,
All,
None,
}Expand description
Axis for single-axis gizmo operations.
Variants§
X
X axis (red).
Y
Y axis (green).
Z
Z axis (blue).
XY
XY plane.
XZ
XZ plane.
YZ
YZ plane.
All
All axes (free movement).
None
No axis selected.
Implementations§
Trait Implementations§
impl Copy for GizmoAxis
impl Eq for GizmoAxis
impl StructuralPartialEq for GizmoAxis
Auto Trait Implementations§
impl Freeze for GizmoAxis
impl RefUnwindSafe for GizmoAxis
impl Send for GizmoAxis
impl Sync for GizmoAxis
impl Unpin for GizmoAxis
impl UnsafeUnpin for GizmoAxis
impl UnwindSafe for GizmoAxis
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