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

Function atan

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

Source from the content-addressed store, hash-verified

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)); }
388

Callers 15

atan_impl_doubleFunction · 0.85
atanMethod · 0.85
fixed_point.hFile · 0.85
s12x4Class · 0.85
s24x8Class · 0.85
s8x8Class · 0.85
s4x12Class · 0.85
lerpFunction · 0.85
s8x24Class · 0.85
atanMethod · 0.85
test_atan_implFunction · 0.85
measure_atanFunction · 0.85

Calls 2

atan_impl_doubleFunction · 0.85
atan_impl_floatFunction · 0.85

Tested by 2

test_atan_implFunction · 0.68