| 54 | constexpr explicit fixed_point_base(raw_type raw, RawTag) : mValue(raw) {} |
| 55 | |
| 56 | static constexpr FASTLED_FORCE_INLINE Derived from_raw(raw_type raw) { |
| 57 | return Derived(raw, typename Derived::RawTag()); |
| 58 | } |
| 59 | |
| 60 | // ---- Access ------------------------------------------------------------ |
| 61 |