| 439 | // Power: pow(2.0, 3.0) → 8.0. Uses exp2/log2 LUTs internally. |
| 440 | // FP r = FP::pow(FP(2.0f), FP(10.0f)); // 1024.0 |
| 441 | static FASTLED_FORCE_INLINE fixed_point pow(fixed_point base, fixed_point exp) FL_NOEXCEPT { |
| 442 | return from_raw(Base::pow(base, exp).raw()); |
| 443 | } |
| 444 | }; |
| 445 | |
| 446 | // Convenience aliases that default the sign, so you don't need to spell Sign::SIGNED. |
no test coverage detected