Acos returns the arccosine, in radians, of x. Special case is: Acos(x) = NaN if x < -1 or x > 1
(x float32)
| 9 | // Special case is: |
| 10 | // Acos(x) = NaN if x < -1 or x > 1 |
| 11 | func Acos(x float32) float32 { |
| 12 | return engomath.Acos(x) |
| 13 | } |
| 14 | |
| 15 | // Asin returns the arcsine, in radians, of x. |
| 16 | // |