[][src]Struct ezcgmath::Radians

pub struct Radians(pub Scalar);

An angle in Radians. Can be converted from Degrees easily with Radians::from(degrees)

Trait Implementations

impl AbsDiffEq<Radians> for Radians[src]

type Epsilon = Scalar

Used for specifying relative comparisons.

impl Clone for Radians[src]

impl Copy for Radians[src]

impl Debug for Radians[src]

impl From<Degrees> for Radians[src]

impl From<Radians> for Degrees[src]

impl From<f32> for Radians[src]

impl PartialEq<Radians> for Radians[src]

impl RelativeEq<Radians> for Radians[src]

impl StructuralPartialEq for Radians[src]

impl UlpsEq<Radians> for Radians[src]

Auto Trait Implementations

impl RefUnwindSafe for Radians

impl Send for Radians

impl Sync for Radians

impl Unpin for Radians

impl UnwindSafe for Radians

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.