[][src]Trait vector2math::Sin

pub trait Sin {
    type Output;
    fn sin(self) -> Self::Output;
}

Trait for getting the sine of a number

Associated Types

type Output

The output type

Loading content...

Required methods

fn sin(self) -> Self::Output

Get the sine

Loading content...

Implementations on Foreign Types

impl Sin for f32
[src]

type Output = f32

impl Sin for f64
[src]

type Output = f64

Loading content...

Implementors

Loading content...