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

Function atan2f

src/fl/math/math.h:390–390  ·  view source on GitHub ↗

atan2

Source from the content-addressed store, hash-verified

388
389// atan2
390inline float atan2f(float y, float x) FL_NOEXCEPT { return atan2_impl_float(y, x); }
391inline double atan2(double y, double x) FL_NOEXCEPT { return atan2_impl_double(y, x); }
392template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
393atan2(T y, T x) FL_NOEXCEPT { return atan2_impl_float(static_cast<float>(y), static_cast<float>(x)); }

Callers 5

atan2_impl_floatFunction · 0.85
measure_atan2Function · 0.85
measure_atan2_tFunction · 0.85
FL_TEST_FILEFunction · 0.85

Calls 1

atan2_impl_floatFunction · 0.85

Tested by

no test coverage detected