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

Function tanf

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

tan

Source from the content-addressed store, hash-verified

362
363// tan
364inline float tanf(float value) FL_NOEXCEPT { return tan_impl_float(value); }
365inline double tan(double value) FL_NOEXCEPT { return tan_impl_double(value); }
366template<typename T> inline typename enable_if<is_integral<T>::value, float>::type
367tan(T value) FL_NOEXCEPT { return tan_impl_float(static_cast<float>(value)); }

Callers 2

tan_impl_floatFunction · 0.85
FL_TEST_FILEFunction · 0.85

Calls 1

tan_impl_floatFunction · 0.85

Tested by

no test coverage detected