pub enum RotationType {
Intrinsic,
Extrinsic,
}
Expand description
Specifies the rotation type of Euler angles.
Considering a fixed Reference frame
and a rotating Body frame
,
Intrinsic rotation
and Extrinsic rotation
represent the following rotations:
Intrinsic
: Rotate around the axes of theBody frame
Extrinsic
: Rotate around the axes of theReference frame
Variants§
Trait Implementations§
Source§impl Clone for RotationType
impl Clone for RotationType
Source§fn clone(&self) -> RotationType
fn clone(&self) -> RotationType
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 RotationType
impl Debug for RotationType
impl Copy for RotationType
Auto Trait Implementations§
impl Freeze for RotationType
impl RefUnwindSafe for RotationType
impl Send for RotationType
impl Sync for RotationType
impl Unpin for RotationType
impl UnwindSafe for RotationType
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