Trait graphics::Radians

pub trait Radians {
    // Required methods
    fn _90() -> Self;
    fn _180() -> Self;
    fn _360() -> Self;
    fn deg_to_rad(self) -> Self;
    fn rad_to_deg(self) -> Self;
}
Expand description

Useful constants for radians.

Required Methods§

fn _90() -> Self

Returns radians corresponding to 90 degrees.

fn _180() -> Self

Returns radians corresponding to 180 degrees.

fn _360() -> Self

Returns radians corresponding to 360 degrees.

fn deg_to_rad(self) -> Self

Convert a value to radians from degrees. Equivalent to value * (π / 180).

fn rad_to_deg(self) -> Self

Convert a value to degrees from radians. Equivalent to value * (180 / π).

Implementations on Foreign Types§

§

impl Radians for f64

§

fn _90() -> f64

§

fn _180() -> f64

§

fn _360() -> f64

§

fn deg_to_rad(self) -> f64

§

fn rad_to_deg(self) -> f64

§

impl Radians for f32

§

fn _90() -> f32

§

fn _180() -> f32

§

fn _360() -> f32

§

fn deg_to_rad(self) -> f32

§

fn rad_to_deg(self) -> f32

Implementors§