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

Implementations on Foreign Types

impl Trig for f32
[src]

[src]

[src]

[src]

impl Trig for f64
[src]

[src]

[src]

[src]

Implementors