Trait float::Trig [] [src]

pub trait Trig {
    fn sin(self) -> Self;
fn cos(self) -> Self;
fn tan(self) -> Self;
fn asin(self) -> Self;
fn acos(self) -> Self;
fn atan(self) -> Self;
fn atan2(self, other: Self) -> Self;
fn sinh(self) -> Self;
fn cosh(self) -> Self;
fn tanh(self) -> Self;
fn asinh(self) -> Self;
fn acosh(self) -> Self;
fn atanh(self) -> Self; }
[]

Basic trigonometry functions

Required Methods

[]

Returns sine of self.

[]

Returns cosine of self.

[]

Returns tangent of self.

[]

Returns inverse sine of self.

[]

Returns inverse cosine of self.

[]

Returns inverse tangent of self.

[]

Returns the four quadrant arctangent of self (y) and other (x).

[]

Returns hyperbolic sine of self.

[]

Returns hyperbolic cosine of self.

[]

Returns hyperbolic tangent of self.

[]

Returns inverse hyperbolic sine of self.

[]

Returns inverse hyperbolic cosine of self.

[]

Returns inverse hyperbolic tangent of self.

Implementors