Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FastLED/FastLED
/ cos_impl_float
Function
cos_impl_float
src/fl/math/math.cpp.hpp:272–278 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
270
}
271
272
float cos_impl_float(float value) {
273
#if FL_MATH_USE_LIBM
274
return ::cosf(value);
275
#else
276
return detail::cos_reduce_<float>(value);
277
#endif
278
}
279
280
double cos_impl_double(double value) {
281
#if FL_MATH_USE_LIBM
Callers
2
cosf
Function · 0.85
cos
Function · 0.85
Calls
1
cosf
Function · 0.85
Tested by
no test coverage detected