pub struct EulerAngleReduction {
pub euler_p: RotationAxis,
pub euler_q: RotationAxis,
pub euler_strict: bool,
}Expand description
Euler angle reduction configuration.
Fields§
§euler_p: RotationAxisAxis used for the P rotation.
euler_q: RotationAxisAxis used for the Q rotation.
euler_strict: boolWhether to enforce strict P-Q-P reductions.
Trait Implementations§
Source§impl Clone for EulerAngleReduction
impl Clone for EulerAngleReduction
Source§fn clone(&self) -> EulerAngleReduction
fn clone(&self) -> EulerAngleReduction
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 EulerAngleReduction
impl Debug for EulerAngleReduction
Source§impl<'de> Deserialize<'de> for EulerAngleReduction
impl<'de> Deserialize<'de> for EulerAngleReduction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EulerAngleReduction
impl PartialEq for EulerAngleReduction
Source§impl Serialize for EulerAngleReduction
impl Serialize for EulerAngleReduction
impl StructuralPartialEq for EulerAngleReduction
Auto Trait Implementations§
impl Freeze for EulerAngleReduction
impl RefUnwindSafe for EulerAngleReduction
impl Send for EulerAngleReduction
impl Sync for EulerAngleReduction
impl Unpin for EulerAngleReduction
impl UnwindSafe for EulerAngleReduction
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