pub enum PhysicsMapMode {
AngleLength,
XY,
LengthAngle,
YX,
}Expand description
Physics → parameter mapping modes.
Variants§
AngleLength
Angle and length (2D polar).
XY
Cartesian X and Y.
LengthAngle
Length and angle (reverse order).
YX
Cartesian Y and X (reverse order).
Trait Implementations§
Source§impl Clone for PhysicsMapMode
impl Clone for PhysicsMapMode
Source§fn clone(&self) -> PhysicsMapMode
fn clone(&self) -> PhysicsMapMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PhysicsMapMode
Source§impl Debug for PhysicsMapMode
impl Debug for PhysicsMapMode
Source§impl Default for PhysicsMapMode
impl Default for PhysicsMapMode
Source§fn default() -> PhysicsMapMode
fn default() -> PhysicsMapMode
Returns the “default value” for a type. Read more
impl Eq for PhysicsMapMode
Source§impl Hash for PhysicsMapMode
impl Hash for PhysicsMapMode
Source§impl PartialEq for PhysicsMapMode
impl PartialEq for PhysicsMapMode
impl StructuralPartialEq for PhysicsMapMode
Auto Trait Implementations§
impl Freeze for PhysicsMapMode
impl RefUnwindSafe for PhysicsMapMode
impl Send for PhysicsMapMode
impl Sync for PhysicsMapMode
impl Unpin for PhysicsMapMode
impl UnsafeUnpin for PhysicsMapMode
impl UnwindSafe for PhysicsMapMode
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