Trait float::Trig [] [src]

pub trait Trig {
    fn sin(self) -> Self;
    fn cos(self) -> Self;
    fn tan(self) -> Self;
}

Basic trigonometry functions

Required Methods

Returns sine of self

Returns cosine of self

Returns tangent of self

Implementors