Trait float::Trig[][src]

pub trait Trig {
Show 13 methods 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;
}
Expand description

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.

Implementations on Foreign Types

Implementors