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

Function acosf

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

acos

Source from the content-addressed store, hash-verified

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

Callers 4

acos_impl_floatFunction · 0.85
measure_acosFunction · 0.85
measure_acos_tFunction · 0.85
FL_TEST_FILEFunction · 0.85

Calls 1

acos_impl_floatFunction · 0.85

Tested by

no test coverage detected