libm

Function sincos

Source
pub fn sincos(x: f64) -> (f64, f64)
Expand description

Both the sine and cosine of x (f64).

x is specified in radians and the return value is (sin(x), cos(x)).