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

Function fmodf

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

fmod — template form avoids "using fl::fmod" conflict with ::fmod

Source from the content-addressed store, hash-verified

334
335// fmod — template form avoids "using fl::fmod" conflict with ::fmod
336inline float fmodf(float x, float y) FL_NOEXCEPT { return fmod_impl_float(x, y); }
337template<typename T>
338inline typename enable_if<!is_integral<T>::value, T>::type
339fmod(T x, T y) FL_NOEXCEPT {

Callers 11

at_exactMethod · 0.85
calculateTileAtWrapMethod · 0.85
fmodPosMethod · 0.85
calculate_oscillatorsFunction · 0.85
setupChasingSpiralFrameFunction · 0.85
drawMethod · 0.85
drawMethod · 0.85
updatePhaseMethod · 0.85
fmod_impl_floatFunction · 0.85
FL_TEST_FILEFunction · 0.85
get_positionFunction · 0.85

Calls 1

fmod_impl_floatFunction · 0.85

Tested by

no test coverage detected