MCPcopy 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
528float 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
536double atan_impl_double(double value) {
537#if FL_MATH_USE_LIBM

Callers 2

atanfFunction · 0.85
atanFunction · 0.85

Calls 1

atanfFunction · 0.85

Tested by

no test coverage detected