FastLED 3.9.15
Loading...
Searching...
No Matches

◆ easeOutSine8()

u8 fl::easeOutSine8 ( u8 i)

8-bit sine ease-out function Takes an input value 0-255 and returns an eased value 0-255 Smooth sinusoidal deceleration

Definition at line 170 of file ease.cpp.hpp.

170 {
171 // ease-out sine: sin(t * π/2)
172 // Delegate to 16-bit version for consistency and accuracy
173 // Scale 8-bit input to 16-bit range, call 16-bit function, scale result back
174 u16 input16 = map8_to_16(i);
175 u16 result16 = easeOutSine16(input16);
176 return map16_to_8(result16);
177}
u16 map8_to_16(u8 x) FL_NOEXCEPT
Definition intmap.h:48
u8 map16_to_8(u16 x) FL_NOEXCEPT
Definition intmap.h:66
u16 easeOutSine16(u16 i)
16-bit sine ease-out function Takes an input value 0-65535 and returns an eased value 0-65535
Definition ease.cpp.hpp:305

References easeOutSine16(), map16_to_8(), and map8_to_16().

Referenced by ease8(), and ease8().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: