| 371 | |
| 372 | // Component-wise maximum: max(3.0, 1.5) → 3.0 |
| 373 | static constexpr FASTLED_FORCE_INLINE fixed_point max(fixed_point a, fixed_point b) FL_NOEXCEPT { |
| 374 | return from_raw(Base::max(a, b).raw()); |
| 375 | } |
| 376 | |
| 377 | // ---- Trigonometry ---- |
| 378 | // Angles are in radians (not degrees, not 0-65535 "brev" units). |
no test coverage detected