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

Function floorf

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

floor

Source from the content-addressed store, hash-verified

302
303// floor
304inline float floorf(float value) FL_NOEXCEPT { return floor_impl_float(value); }
305inline double floor(double value) FL_NOEXCEPT { return floor_impl_double(value); }
306template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
307floor(T value) FL_NOEXCEPT { return floor_impl_float(static_cast<float>(value)); }

Callers 11

splatFunction · 0.85
at_splat_extrapolateMethod · 0.85
noiseMethod · 0.85
drawDotMethod · 0.85
drawAALineMethod · 0.85
flowAdvectMethod · 0.85
drawFlowVectorsMethod · 0.85
triggerMethod · 0.85
pnoiseFunction · 0.85
initOctaveWiseMethod · 0.85
FL_TEST_FILEFunction · 0.85

Calls 1

floor_impl_floatFunction · 0.85

Tested by

no test coverage detected