Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FastLED/FastLED
/ atan_impl_float
Function
atan_impl_float
src/fl/math/math.cpp.hpp:528–534 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
526
}
527
528
float atan_impl_float(float value) {
529
#if FL_MATH_USE_LIBM
530
return ::atanf(value);
531
#else
532
return detail::atan_full_<float>(value);
533
#endif
534
}
535
536
double atan_impl_double(double value) {
537
#if FL_MATH_USE_LIBM
Callers
2
atanf
Function · 0.85
atan
Function · 0.85
Calls
1
atanf
Function · 0.85
Tested by
no test coverage detected