Arc tangent implementation. \param x first argument \param y second argument \return function value stored in single-preicision
| 1512 | /// \param y second argument |
| 1513 | /// \return function value stored in single-preicision |
| 1514 | static expr atan2(float x, float y) { return expr(std::atan2(x, y)); } |
| 1515 | |
| 1516 | /// Hyperbolic sine implementation. |
| 1517 | /// \param arg function argument |