[][src]Struct cgmath::Deg

#[repr(C)]
pub struct Deg<S>(pub S);

An angle, in degrees.

This type is marked as #[repr(C)].

Trait Implementations

impl<S: BaseFloat> Angle for Deg<S>[src]

type Unitless = S

fn normalize(self) -> Self[src]

Return the angle, normalized to the range [0, full_turn).

fn opposite(self) -> Self[src]

Return the angle rotated by half a turn.

fn bisect(self, other: Self) -> Self[src]

Returns the interior bisector of the two angles.

fn turn_div_2() -> Self[src]

Half of a full rotation.

fn turn_div_3() -> Self[src]

A third of a full rotation.

fn turn_div_4() -> Self[src]

A quarter of a full rotation.

fn turn_div_6() -> Self[src]

A sixth of a full rotation.

fn csc(self) -> Self::Unitless[src]

Compute the cosecant of the angle. Read more

fn cot(self) -> Self::Unitless[src]

Compute the cotangent of the angle. Read more

fn sec(self) -> Self::Unitless[src]

Compute the secant of the angle. Read more

impl<S: Copy> Copy for Deg<S>[src]

impl<S: Clone> Clone for Deg<S>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<S: PartialOrd> PartialOrd<Deg<S>> for Deg<S>[src]

impl<S: PartialEq> PartialEq<Deg<S>> for Deg<S>[src]

impl<S> From<Rad<S>> for Deg<S> where
    S: BaseFloat
[src]

impl<S> From<Deg<S>> for Rad<S> where
    S: BaseFloat
[src]

impl<S: Debug> Debug for Deg<S>[src]

impl<S: BaseFloat> Rem<Deg<S>> for Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the % operator.

impl<'a, S: BaseFloat> Rem<&'a Deg<S>> for Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the % operator.

impl<'a, S: BaseFloat> Rem<Deg<S>> for &'a Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the % operator.

impl<'a, 'b, S: BaseFloat> Rem<&'a Deg<S>> for &'b Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the % operator.

impl<S: BaseFloat> Add<Deg<S>> for Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the + operator.

impl<'a, S: BaseFloat> Add<&'a Deg<S>> for Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the + operator.

impl<'a, S: BaseFloat> Add<Deg<S>> for &'a Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the + operator.

impl<'a, 'b, S: BaseFloat> Add<&'a Deg<S>> for &'b Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the + operator.

impl<S: BaseFloat> Sub<Deg<S>> for Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the - operator.

impl<'a, S: BaseFloat> Sub<&'a Deg<S>> for Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the - operator.

impl<'a, S: BaseFloat> Sub<Deg<S>> for &'a Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the - operator.

impl<'a, 'b, S: BaseFloat> Sub<&'a Deg<S>> for &'b Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the - operator.

impl<S: BaseFloat> Mul<S> for Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the * operator.

impl<'a, S: BaseFloat> Mul<S> for &'a Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the * operator.

impl<S: BaseFloat> Div<Deg<S>> for Deg<S>[src]

type Output = S

The resulting type after applying the / operator.

impl<'a, S: BaseFloat> Div<&'a Deg<S>> for Deg<S>[src]

type Output = S

The resulting type after applying the / operator.

impl<'a, S: BaseFloat> Div<Deg<S>> for &'a Deg<S>[src]

type Output = S

The resulting type after applying the / operator.

impl<'a, 'b, S: BaseFloat> Div<&'a Deg<S>> for &'b Deg<S>[src]

type Output = S

The resulting type after applying the / operator.

impl<S: BaseFloat> Div<S> for Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the / operator.

impl<'a, S: BaseFloat> Div<S> for &'a Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the / operator.

impl<S: BaseFloat> Neg for Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the - operator.

impl<'a, S: BaseFloat> Neg for &'a Deg<S>[src]

type Output = Deg<S>

The resulting type after applying the - operator.

impl<S: BaseFloat + AddAssign<S>> AddAssign<Deg<S>> for Deg<S>[src]

impl<S: BaseFloat + SubAssign<S>> SubAssign<Deg<S>> for Deg<S>[src]

impl<S: BaseFloat + MulAssign<S>> MulAssign<S> for Deg<S>[src]

impl<S: BaseFloat + DivAssign<S>> DivAssign<S> for Deg<S>[src]

impl<S: BaseFloat + RemAssign<S>> RemAssign<Deg<S>> for Deg<S>[src]

impl<S: BaseFloat> Sum<Deg<S>> for Deg<S>[src]

impl<'a, S: 'a + BaseFloat> Sum<&'a Deg<S>> for Deg<S>[src]

impl<S: BaseFloat> ApproxEq for Deg<S>[src]

type Epsilon = S::Epsilon

Used for specifying relative comparisons.

fn relative_ne(
    &self,
    other: &Self,
    epsilon: Self::Epsilon,
    max_relative: Self::Epsilon
) -> bool
[src]

The inverse of ApproxEq::relative_eq.

fn ulps_ne(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool[src]

The inverse of ApproxEq::ulps_eq.

impl<S: BaseFloat + SampleRange> Rand for Deg<S>[src]

impl<S: BaseFloat> Zero for Deg<S>[src]

fn set_zero(&mut self)[src]

Sets self to the additive identity element of Self, 0.

impl<S: Bounded> Bounded for Deg<S>[src]

Auto Trait Implementations

impl<S> Unpin for Deg<S> where
    S: Unpin

impl<S> Sync for Deg<S> where
    S: Sync

impl<S> Send for Deg<S> where
    S: Send

impl<S> UnwindSafe for Deg<S> where
    S: UnwindSafe

impl<S> RefUnwindSafe for Deg<S> where
    S: RefUnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, Rhs> NumAssignOps<Rhs> for T where
    T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, 
[src]