pub struct GeodesicIntersection {
pub longitude: f64,
pub latitude: f64,
}Expand description
Longitude/latitude intersection of two infinite geodesics, in radians.
Fields§
§longitude: f64Normalized longitude in radians.
latitude: f64Latitude in radians.
Trait Implementations§
Source§impl Clone for GeodesicIntersection
impl Clone for GeodesicIntersection
Source§fn clone(&self) -> GeodesicIntersection
fn clone(&self) -> GeodesicIntersection
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 GeodesicIntersection
Source§impl Debug for GeodesicIntersection
impl Debug for GeodesicIntersection
Source§impl PartialEq for GeodesicIntersection
impl PartialEq for GeodesicIntersection
impl StructuralPartialEq for GeodesicIntersection
Auto Trait Implementations§
impl Freeze for GeodesicIntersection
impl RefUnwindSafe for GeodesicIntersection
impl Send for GeodesicIntersection
impl Sync for GeodesicIntersection
impl Unpin for GeodesicIntersection
impl UnsafeUnpin for GeodesicIntersection
impl UnwindSafe for GeodesicIntersection
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