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

Function sinf

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

sin

Source from the content-addressed store, hash-verified

350
351// sin
352inline float sinf(float value) FL_NOEXCEPT { return sin_impl_float(value); }
353inline double sin(double value) FL_NOEXCEPT { return sin_impl_double(value); }
354template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
355sin(T value) FL_NOEXCEPT { return sin_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
emitLissajousLineMethod · 0.85
emitOrbitalDotsMethod · 0.85
triggerMethod · 0.85
drawMethod · 0.85
drawMethod · 0.85

Calls 1

sin_impl_floatFunction · 0.85

Tested by 15

makeSampleFunction · 0.68
generateSineFunction · 0.68
makeMultiHarmonicFunction · 0.68
makeSyntheticVowelFunction · 0.68
makeJitteredVowelFunction · 0.68
makeGuitarStringDecayFunction · 0.68
makeChirpFunction · 0.68
makeKickDrumFunction · 0.68
makeSnareFunction · 0.68
makeTomFunction · 0.68
makeAcousticGuitarFunction · 0.68
makeSawtoothWaveFunction · 0.68