Trait euclid::Trig [] [src]

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

Trait for basic trigonometry functions, so they can be used on generic numeric types

Required Methods

Implementors