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

Function cos_impl_float

src/fl/math/math.cpp.hpp:272–278  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

270}
271
272float cos_impl_float(float value) {
273#if FL_MATH_USE_LIBM
274 return ::cosf(value);
275#else
276 return detail::cos_reduce_<float>(value);
277#endif
278}
279
280double cos_impl_double(double value) {
281#if FL_MATH_USE_LIBM

Callers 2

cosfFunction · 0.85
cosFunction · 0.85

Calls 1

cosfFunction · 0.85

Tested by

no test coverage detected