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

◆ ceil()

template<typename T>
T fl::ceil ( T value)
inline

Definition at line 18 of file math.h.

18 {
19 if (value <= 0) {
20 return static_cast<T>(static_cast<int>(value));
21 }
22 return static_cast<T>(::ceil(static_cast<float>(value)));
23}
T ceil(T value)
Definition math.h:18

References ceil().

Referenced by ceil().

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