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

◆ easeInQuad16()

u16 fl::easeInQuad16 ( u16 i)

16-bit quadratic ease-in function Takes an input value 0-65535 and returns an eased value 0-65535

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

189 {
190 // Simple quadratic ease-in: i^2 scaled to 16-bit range
191 // Using scale16(i, i) which computes (i * i) / 65535
192 return scale16(i, i);
193}

Referenced by ease16(), and ease16().

+ Here is the caller graph for this function: