Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FastLED/FastLED
/ sin_impl_float
Function
sin_impl_float
src/fl/math/math.cpp.hpp:256–262 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
254
}
255
256
float sin_impl_float(float value) {
257
#if FL_MATH_USE_LIBM
258
return ::sinf(value);
259
#else
260
return detail::sin_reduce_<float>(value);
261
#endif
262
}
263
264
double sin_impl_double(double value) {
265
#if FL_MATH_USE_LIBM
Callers
2
sinf
Function · 0.85
sin
Function · 0.85
Calls
1
sinf
Function · 0.85
Tested by
no test coverage detected