Struct radiant_utils::maths::Angle[][src]

pub struct Angle<T = f32>(pub T);

An Angle between -PI and PI.

Methods

impl<T> Angle<T> where
    T: Float
[src]

Returns the angle's value in radians.

Returns the angle's value in degrees.

Deprecated since 0.2.2

: use Vec2::from() instead

Returns a vector pointing in the direction of the angle.

Creates an angle from a radians value.

Creates an angle from a degrees value.

Returns a normalized version of the angle.

Returns smallest directional angle between self and target.

Important traits for &'a mut R

Mutates self so that subtracting the target will yield the smallest directional angle between self and target.

Trait Implementations

impl<T: Copy> Copy for Angle<T>
[src]

impl<T: Clone> Clone for Angle<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for Angle<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: PartialOrd> PartialOrd for Angle<T>
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<T> From<Vec2<T>> for Angle<T> where
    T: Float
[src]

Performs the conversion.

impl<T> From<T> for Angle<T> where
    T: Float
[src]

Performs the conversion.

impl From<Angle<f64>> for f64
[src]

Performs the conversion.

impl From<Angle<f32>> for f32
[src]

Performs the conversion.

impl<'a> From<&'a Angle<f64>> for f64
[src]

Performs the conversion.

impl<'a> From<&'a Angle<f32>> for f32
[src]

Performs the conversion.

impl<T> Default for Angle<T> where
    T: Float
[src]

Returns the "default value" for a type. Read more

impl<T> ToPrimitive for Angle<T> where
    T: Float
[src]

Converts the value of self to an f64.

Converts the value of self to an f32.

Converts the value of self to an i64.

Converts the value of self to an u64.

Converts the value of self to an isize.

Converts the value of self to an i8.

Converts the value of self to an i16.

Converts the value of self to an i32.

Converts the value of self to an i128. Read more

Converts the value of self to a usize.

Converts the value of self to an u8.

Converts the value of self to an u16.

Converts the value of self to an u32.

Converts the value of self to an u128. Read more

impl<T> FromPrimitive for Angle<T> where
    T: Float
[src]

Convert a f64 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert a f32 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert an i64 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert an u64 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, the None is returned. Read more

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert an i128 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

Convert an u128 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

impl<T> Neg for Angle<T> where
    T: Float
[src]

The resulting type after applying the - operator.

Performs the unary - operation.

impl<T> Add for Angle<T> where
    T: Float
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<T> AddAssign for Angle<T> where
    T: Float
[src]

Performs the += operation.

impl<T> Sub for Angle<T> where
    T: Float
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<T> SubAssign for Angle<T> where
    T: Float
[src]

Performs the -= operation.

impl<T> Mul<Angle<T>> for Angle<T> where
    T: Float
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<T> MulAssign for Angle<T> where
    T: Float
[src]

Performs the *= operation.

impl<T> Mul<T> for Angle<T> where
    T: Float
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<T> Div<Angle<T>> for Angle<T> where
    T: Float
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<T> DivAssign for Angle<T> where
    T: Float
[src]

Performs the /= operation.

impl<T> Div<T> for Angle<T> where
    T: Float
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl AsUniform for Angle<f32>
[src]

impl AsUniform for Angle<f64>
[src]

impl<T> Debug for Angle<T> where
    T: Debug + Float
[src]

Formats the value using the given formatter. Read more

impl<T> From<Angle<T>> for Vec2<T> where
    T: Float
[src]

Performs the conversion.

Auto Trait Implementations

impl<T> Send for Angle<T> where
    T: Send

impl<T> Sync for Angle<T> where
    T: Sync