[][src]Trait vector2math::Cos

pub trait Cos {
    type Output;
    fn cos(self) -> Self::Output;
}

Trait for getting the cosine of a number

Associated Types

type Output

The output type

Loading content...

Required methods

fn cos(self) -> Self::Output

Get the cosine

Loading content...

Implementations on Foreign Types

impl Cos for f32[src]

type Output = f32

impl Cos for f64[src]

type Output = f64

Loading content...

Implementors

Loading content...