#[repr(C)]pub struct Deg<S>(pub S);
Expand description
An angle, in degrees.
This type is marked as #[repr(C)]
.
Tuple Fields§
§0: S
Trait Implementations§
source§impl<S: BaseFloat> AbsDiffEq<Deg<S>> for Deg<S>
impl<S: BaseFloat> AbsDiffEq<Deg<S>> for Deg<S>
source§fn default_epsilon() -> S::Epsilon
fn default_epsilon() -> S::Epsilon
The default tolerance to use when testing values that are close together. Read more
source§fn abs_diff_eq(&self, other: &Self, epsilon: S::Epsilon) -> bool
fn abs_diff_eq(&self, other: &Self, epsilon: S::Epsilon) -> bool
A test for equality that uses the absolute difference to compute the approximate
equality of two numbers.
source§fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
The inverse of
AbsDiffEq::abs_diff_eq
.source§impl<S: BaseFloat + AddAssign<S>> AddAssign<Deg<S>> for Deg<S>
impl<S: BaseFloat + AddAssign<S>> AddAssign<Deg<S>> for Deg<S>
source§fn add_assign(&mut self, other: Deg<S>)
fn add_assign(&mut self, other: Deg<S>)
Performs the
+=
operation. Read moresource§impl<S: BaseFloat> Angle for Deg<S>
impl<S: BaseFloat> Angle for Deg<S>
type Unitless = S
source§fn sin_cos(self) -> (S, S)
fn sin_cos(self) -> (S, S)
Compute the sine and cosine of the angle, returning the result as a
pair. Read more
source§fn asin(a: S) -> Deg<S>
fn asin(a: S) -> Deg<S>
Compute the arcsine of the ratio, returning the resulting angle. Read more
source§fn acos(a: S) -> Deg<S>
fn acos(a: S) -> Deg<S>
Compute the arccosine of the ratio, returning the resulting angle. Read more
source§fn atan(a: S) -> Deg<S>
fn atan(a: S) -> Deg<S>
Compute the arctangent of the ratio, returning the resulting angle. Read more
fn atan2(a: S, b: S) -> Deg<S>
source§fn normalize_signed(self) -> Self
fn normalize_signed(self) -> Self
Return the angle, normalized to the range
[-turn_div_2, turn_div_2)
.source§fn turn_div_2() -> Self
fn turn_div_2() -> Self
Half of a full rotation.
source§fn turn_div_3() -> Self
fn turn_div_3() -> Self
A third of a full rotation.
source§fn turn_div_4() -> Self
fn turn_div_4() -> Self
A quarter of a full rotation.
source§fn turn_div_6() -> Self
fn turn_div_6() -> Self
A sixth of a full rotation.
source§impl<S: BaseFloat + DivAssign<S>> DivAssign<S> for Deg<S>
impl<S: BaseFloat + DivAssign<S>> DivAssign<S> for Deg<S>
source§fn div_assign(&mut self, scalar: S)
fn div_assign(&mut self, scalar: S)
Performs the
/=
operation. Read moresource§impl<S: BaseFloat + MulAssign<S>> MulAssign<S> for Deg<S>
impl<S: BaseFloat + MulAssign<S>> MulAssign<S> for Deg<S>
source§fn mul_assign(&mut self, scalar: S)
fn mul_assign(&mut self, scalar: S)
Performs the
*=
operation. Read moresource§impl<S: PartialEq> PartialEq<Deg<S>> for Deg<S>
impl<S: PartialEq> PartialEq<Deg<S>> for Deg<S>
source§impl<S: PartialOrd> PartialOrd<Deg<S>> for Deg<S>
impl<S: PartialOrd> PartialOrd<Deg<S>> for Deg<S>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<S: BaseFloat> RelativeEq<Deg<S>> for Deg<S>
impl<S: BaseFloat> RelativeEq<Deg<S>> for Deg<S>
source§fn default_max_relative() -> S::Epsilon
fn default_max_relative() -> S::Epsilon
The default relative tolerance for testing values that are far-apart. Read more
source§fn relative_eq(
&self,
other: &Self,
epsilon: S::Epsilon,
max_relative: S::Epsilon
) -> bool
fn relative_eq( &self, other: &Self, epsilon: S::Epsilon, max_relative: S::Epsilon ) -> bool
A test for equality that uses a relative comparison if the values are far apart.
source§fn relative_ne(
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
fn relative_ne( &self, other: &Rhs, epsilon: Self::Epsilon, max_relative: Self::Epsilon ) -> bool
The inverse of
RelativeEq::relative_eq
.source§impl<S: BaseFloat + RemAssign<S>> RemAssign<Deg<S>> for Deg<S>
impl<S: BaseFloat + RemAssign<S>> RemAssign<Deg<S>> for Deg<S>
source§fn rem_assign(&mut self, other: Deg<S>)
fn rem_assign(&mut self, other: Deg<S>)
Performs the
%=
operation. Read moresource§impl<S: BaseFloat + SubAssign<S>> SubAssign<Deg<S>> for Deg<S>
impl<S: BaseFloat + SubAssign<S>> SubAssign<Deg<S>> for Deg<S>
source§fn sub_assign(&mut self, other: Deg<S>)
fn sub_assign(&mut self, other: Deg<S>)
Performs the
-=
operation. Read moresource§impl<S: BaseFloat> UlpsEq<Deg<S>> for Deg<S>
impl<S: BaseFloat> UlpsEq<Deg<S>> for Deg<S>
impl<S: Copy> Copy for Deg<S>
impl<S> StructuralPartialEq for Deg<S>
Auto Trait Implementations§
impl<S> RefUnwindSafe for Deg<S>where S: RefUnwindSafe,
impl<S> Send for Deg<S>where S: Send,
impl<S> Sync for Deg<S>where S: Sync,
impl<S> Unpin for Deg<S>where S: Unpin,
impl<S> UnwindSafe for Deg<S>where S: UnwindSafe,
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