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

Function atan2_impl_double

src/fl/math/math.cpp.hpp:504–510  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

502}
503
504double atan2_impl_double(double y, double x) {
505#if FL_MATH_USE_LIBM
506 return ::atan2(y, x);
507#else
508 return detail::atan2_full_<double>(y, x);
509#endif
510}
511
512float hypot_impl_float(float x, float y) {
513#if FL_MATH_USE_LIBM

Callers 1

atan2Function · 0.85

Calls 1

atan2Function · 0.70

Tested by

no test coverage detected