pub enum GizmoOrientation {
Global,
Local,
}
Expand description
Orientation of a gizmo.
Variants§
Global
Transformation axes are aligned to world space.
Local
Transformation axes are aligned to the last target’s orientation.
Trait Implementations§
Source§impl Clone for GizmoOrientation
impl Clone for GizmoOrientation
Source§fn clone(&self) -> GizmoOrientation
fn clone(&self) -> GizmoOrientation
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 GizmoOrientation
impl Debug for GizmoOrientation
Source§impl Default for GizmoOrientation
impl Default for GizmoOrientation
Source§fn default() -> GizmoOrientation
fn default() -> GizmoOrientation
Returns the “default value” for a type. Read more
Source§impl PartialEq for GizmoOrientation
impl PartialEq for GizmoOrientation
impl Copy for GizmoOrientation
impl Eq for GizmoOrientation
impl StructuralPartialEq for GizmoOrientation
Auto Trait Implementations§
impl Freeze for GizmoOrientation
impl RefUnwindSafe for GizmoOrientation
impl Send for GizmoOrientation
impl Sync for GizmoOrientation
impl Unpin for GizmoOrientation
impl UnwindSafe for GizmoOrientation
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