Sincos returns Sin(x), Cos(x). Special cases are: Sincos(±0) = ±0, 1 Sincos(±Inf) = NaN, NaN Sincos(NaN) = NaN, NaN
(x float32)
| 375 | // Sincos(±Inf) = NaN, NaN |
| 376 | // Sincos(NaN) = NaN, NaN |
| 377 | func Sincos(x float32) (sin, cos float32) { |
| 378 | return engomath.Sincos(x) |
| 379 | } |
| 380 | |
| 381 | // Tan returns the tangent of the radian argument x. |
| 382 | // |
no outgoing calls
no test coverage detected