pub struct GnomonicPoint {
pub east: f64,
pub north: f64,
}Expand description
A position in a gnomonic tangent plane.
Both coordinates are dimensionless ratios on the projection plane. For small offsets, their numeric values approximate angular offsets in radians.
Fields§
§east: f64Coordinate toward increasing right ascension (East).
north: f64Coordinate toward the North celestial pole.
Trait Implementations§
Source§impl Clone for GnomonicPoint
impl Clone for GnomonicPoint
Source§fn clone(&self) -> GnomonicPoint
fn clone(&self) -> GnomonicPoint
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 GnomonicPoint
Source§impl Debug for GnomonicPoint
impl Debug for GnomonicPoint
Source§impl<'de> Deserialize<'de> for GnomonicPoint
impl<'de> Deserialize<'de> for GnomonicPoint
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 GnomonicPoint
impl PartialEq for GnomonicPoint
Source§impl Serialize for GnomonicPoint
impl Serialize for GnomonicPoint
impl StructuralPartialEq for GnomonicPoint
Auto Trait Implementations§
impl Freeze for GnomonicPoint
impl RefUnwindSafe for GnomonicPoint
impl Send for GnomonicPoint
impl Sync for GnomonicPoint
impl Unpin for GnomonicPoint
impl UnsafeUnpin for GnomonicPoint
impl UnwindSafe for GnomonicPoint
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