* @brief Fast approximation of sqrt(val). * * @param v The input value. * * @return The approximated result. */
| 453 | * @return The approximated result. |
| 454 | */ |
| 455 | static inline float sqrt(float v) |
| 456 | { |
| 457 | return std::sqrt(v); |
| 458 | } |
| 459 | |
| 460 | /** |
| 461 | * @brief Extract mantissa and exponent of a float value. |
no outgoing calls