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

Function cosf

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

cos

Source from the content-addressed store, hash-verified

356
357// cos
358inline float cosf(float value) FL_NOEXCEPT { return cos_impl_float(value); }
359inline double cos(double value) FL_NOEXCEPT { return cos_impl_double(value); }
360template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
361cos(T value) FL_NOEXCEPT { return cos_impl_float(static_cast<float>(value)); }

Callers 15

computeMethod · 0.85
noiseRingHSV16Function · 0.85
noiseRingCRGBFunction · 0.85
noiseSphereHSV16Function · 0.85
noiseSphereCRGBFunction · 0.85
noiseCylinderHSV16Function · 0.85
noiseCylinderCRGBFunction · 0.85
emitOrbitalDotsMethod · 0.85
drawMethod · 0.85
drawMethod · 0.85
espDspEnsureTwiddlesFunction · 0.85
cos_impl_floatFunction · 0.85

Calls 1

cos_impl_floatFunction · 0.85

Tested by

no test coverage detected