Arc tangent implementation. \param x first argument \param y second argument \return function value stored in single-preicision
| 1934 | /// \param y second argument |
| 1935 | /// \return function value stored in single-preicision |
| 1936 | static expr atan2(float x, float y) |
| 1937 | { |
| 1938 | return expr(std::atan2(x, y)); |
| 1939 | } |
| 1940 | |
| 1941 | /// Hyperbolic sine implementation. |
| 1942 | /// \param arg function argument |