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

Function sin_impl_float

src/fl/math/math.cpp.hpp:256–262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

254}
255
256float sin_impl_float(float value) {
257#if FL_MATH_USE_LIBM
258 return ::sinf(value);
259#else
260 return detail::sin_reduce_<float>(value);
261#endif
262}
263
264double sin_impl_double(double value) {
265#if FL_MATH_USE_LIBM

Callers 2

sinfFunction · 0.85
sinFunction · 0.85

Calls 1

sinfFunction · 0.85

Tested by

no test coverage detected