MCPcopy Create free account
hub / github.com/FastLED/FastLED / atan2_impl_float

Function atan2_impl_float

src/fl/math/math.cpp.hpp:496–502  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

494} // namespace detail
495
496float atan2_impl_float(float y, float x) {
497#if FL_MATH_USE_LIBM
498 return ::atan2f(y, x);
499#else
500 return detail::atan2_full_<float>(y, x);
501#endif
502}
503
504double atan2_impl_double(double y, double x) {
505#if FL_MATH_USE_LIBM

Callers 2

atan2fFunction · 0.85
atan2Function · 0.85

Calls 1

atan2fFunction · 0.85

Tested by

no test coverage detected