pub struct TruingEarthFrame {
pub latitude_deg: f64,
pub shot_azimuth_deg: f64,
}Expand description
Earth-frame position and pointing supplied to the truing forward model (MBA-1392).
Coriolis needs BOTH latitude and the shot’s compass bearing, so the two travel as one value: there is no meaningful “latitude but no azimuth” configuration, and modelling one without the other would silently invent the missing half.
Fields§
§latitude_deg: f64Firing latitude in degrees, north positive.
shot_azimuth_deg: f64Compass bearing the shot is fired ALONG, degrees, 0 = North, 90 = East. This is
crate::BallisticInputs::shot_azimuth expressed in degrees — NOT
azimuth_angle, which is a small horizontal aiming offset.
Trait Implementations§
Source§impl Clone for TruingEarthFrame
impl Clone for TruingEarthFrame
Source§fn clone(&self) -> TruingEarthFrame
fn clone(&self) -> TruingEarthFrame
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 TruingEarthFrame
Source§impl Debug for TruingEarthFrame
impl Debug for TruingEarthFrame
Source§impl PartialEq for TruingEarthFrame
impl PartialEq for TruingEarthFrame
impl StructuralPartialEq for TruingEarthFrame
Auto Trait Implementations§
impl Freeze for TruingEarthFrame
impl RefUnwindSafe for TruingEarthFrame
impl Send for TruingEarthFrame
impl Sync for TruingEarthFrame
impl Unpin for TruingEarthFrame
impl UnsafeUnpin for TruingEarthFrame
impl UnwindSafe for TruingEarthFrame
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,
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.