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

Function acos

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

Source from the content-addressed store, hash-verified

377// acos
378inline float acosf(float value) FL_NOEXCEPT { return acos_impl_float(value); }
379inline double acos(double value) FL_NOEXCEPT { return acos_impl_double(value); }
380template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
381acos(T value) FL_NOEXCEPT { return acos_impl_float(static_cast<float>(value)); }
382

Callers 14

acos_impl_doubleFunction · 0.85
acosMethod · 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
acosMethod · 0.85
test_acos_implFunction · 0.85
measure_acosFunction · 0.85

Calls 2

acos_impl_doubleFunction · 0.85
acos_impl_floatFunction · 0.85

Tested by 1

test_acos_implFunction · 0.68