| 566 | // Power: fl::pow(FP(2.0f), FP(3.0f)) → 8.0 |
| 567 | template <typename T> |
| 568 | inline typename enable_if<is_fixed_point<T>::value, T>::type |
| 569 | pow(T base, T exp) FL_NOEXCEPT { return T::pow(base, exp); } |
| 570 | |
| 571 | // ---- Trigonometry ---- |
| 572 | // All angles are in radians. |