pub struct Nutation {
pub dpsi: Angle,
pub deps: Angle,
}Expand description
Nutation components with respect to some ecliptic of date.
Fields§
§dpsi: Angleδψ
deps: Angleδε
Implementations§
Source§impl Nutation
impl Nutation
Sourcepub fn nutation_matrix(&self, epsa: MeanObliquity) -> DMat3
pub fn nutation_matrix(&self, epsa: MeanObliquity) -> DMat3
Builds the nutation rotation matrix from the mean obliquity of the ecliptic.
Trait Implementations§
Source§impl Add<Corrections> for Nutation
impl Add<Corrections> for Nutation
Source§impl AddAssign<Corrections> for Nutation
impl AddAssign<Corrections> for Nutation
Source§fn add_assign(&mut self, rhs: Corrections)
fn add_assign(&mut self, rhs: Corrections)
Performs the
+= operation. Read moreimpl Copy for Nutation
impl StructuralPartialEq for Nutation
Auto Trait Implementations§
impl Freeze for Nutation
impl RefUnwindSafe for Nutation
impl Send for Nutation
impl Sync for Nutation
impl Unpin for Nutation
impl UnsafeUnpin for Nutation
impl UnwindSafe for Nutation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, O, Tg, P> TryRotation<O, Tg, T> for Pwhere
T: ContinuousTimeScale + Copy,
O: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Tg: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
impl<T, O, Tg, P> TryRotation<O, Tg, T> for Pwhere
T: ContinuousTimeScale + Copy,
O: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Tg: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§fn try_rotation(
&self,
origin: O,
target: Tg,
time: Time<T>,
) -> Result<Rotation, <P as TryRotation<O, Tg, T>>::Error>
fn try_rotation( &self, origin: O, target: Tg, time: Time<T>, ) -> Result<Rotation, <P as TryRotation<O, Tg, T>>::Error>
Computes the rotation from
origin to target at the given time.