pub struct Ellipsoid {
pub a: f64,
pub b: f64,
pub e: f64,
pub e_sq: f64,
}Expand description
Ellipsoid definition.
Fields§
§a: f64Semimajor radius of the ellipsoid axis (in meters).
b: f64Semiminor radius of the ellipsoid axis (in meters).
e: f64Eccentricity.
e_sq: f64Eccentricity squared.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Ellipsoid
Auto Trait Implementations§
impl Freeze for Ellipsoid
impl RefUnwindSafe for Ellipsoid
impl Send for Ellipsoid
impl Sync for Ellipsoid
impl Unpin for Ellipsoid
impl UnsafeUnpin for Ellipsoid
impl UnwindSafe for Ellipsoid
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