pub struct Degrees(pub f64);
Expand description
The Degrees newtype an f64.
Tuple Fields§
§0: f64
Implementations§
source§impl Degrees
impl Degrees
sourcepub fn normalise(&self) -> Self
pub fn normalise(&self) -> Self
Normalise a Degrees into the range: -180 < value <= 180
§Examples
use angle_sc::Degrees;
assert_eq!(0.0, Degrees(-360.0).normalise().0);
assert_eq!(180.0, Degrees(-180.0).normalise().0);
assert_eq!(180.0, Degrees(180.0).normalise().0);
assert_eq!(0.0, Degrees(360.0).normalise().0);
Trait Implementations§
source§impl Add for Degrees
impl Add for Degrees
source§impl<'de> Deserialize<'de> for Degrees
impl<'de> Deserialize<'de> for Degrees
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 From<Degrees> for Angle
impl From<Degrees> for Angle
source§fn from(a: Degrees) -> Self
fn from(a: Degrees) -> Self
Construct an Angle from an angle in Degrees.
In order to minimize round-off errors, this function calculates sines
of angles with sine values <= 1 / sqrt(2): see
https://stackoverflow.com/questions/31502120/sin-and-cos-give-unexpected-results-for-well-known-angles
It is based on
GeographicLib::Math::sincosd function.
source§impl PartialEq for Degrees
impl PartialEq for Degrees
source§impl Sub for Degrees
impl Sub for Degrees
impl Copy for Degrees
impl StructuralPartialEq for Degrees
Auto Trait Implementations§
impl Freeze for Degrees
impl RefUnwindSafe for Degrees
impl Send for Degrees
impl Sync for Degrees
impl Unpin for Degrees
impl UnwindSafe for Degrees
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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)