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

Function atanf

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

atan

Source from the content-addressed store, hash-verified

382
383// atan
384inline float atanf(float value) FL_NOEXCEPT { return atan_impl_float(value); }
385inline double atan(double value) FL_NOEXCEPT { return atan_impl_double(value); }
386template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
387atan(T value) FL_NOEXCEPT { return atan_impl_float(static_cast<float>(value)); }

Callers 4

atan_impl_floatFunction · 0.85
measure_atanFunction · 0.85
measure_atan_tFunction · 0.85
FL_TEST_FILEFunction · 0.85

Calls 1

atan_impl_floatFunction · 0.85

Tested by

no test coverage detected