#[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 for Deg<S>
impl<S: BaseFloat> AbsDiffEq 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 for Deg<S>
impl<S: BaseFloat + AddAssign<S>> AddAssign 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: PartialOrd> PartialOrd for Deg<S>
impl<S: PartialOrd> PartialOrd for Deg<S>
Source§impl<S: BaseFloat> RelativeEq for Deg<S>
impl<S: BaseFloat> RelativeEq 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 for Deg<S>
impl<S: BaseFloat + RemAssign<S>> RemAssign 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 for Deg<S>
impl<S: BaseFloat + SubAssign<S>> SubAssign 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 for Deg<S>
impl<S: BaseFloat> UlpsEq for Deg<S>
impl<S: Copy> Copy for Deg<S>
impl<S> StructuralPartialEq for Deg<S>
Auto Trait Implementations§
impl<S> Freeze for Deg<S>where
S: Freeze,
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