| 328 | |
| 329 | // Absolute value: abs(-2.5) → 2.5 |
| 330 | static constexpr FASTLED_FORCE_INLINE fixed_point abs(fixed_point x) FL_NOEXCEPT { |
| 331 | return from_raw(Base::abs(x).raw()); |
| 332 | } |
| 333 | |
| 334 | // Sign function: returns -1, 0, or +1. |
| 335 | // sign(-3.5) → -1.0, sign(0) → 0.0, sign(2.0) → 1.0 |
no test coverage detected