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

Function sin_impl_double

src/fl/math/math.cpp.hpp:264–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

262}
263
264double sin_impl_double(double value) {
265#if FL_MATH_USE_LIBM
266 return ::sin(value);
267#else
268 return detail::sin_reduce_<double>(value);
269#endif
270}
271
272float cos_impl_float(float value) {
273#if FL_MATH_USE_LIBM

Callers 1

sinFunction · 0.85

Calls 1

sinFunction · 0.70

Tested by

no test coverage detected