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

Function tan

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

Source from the content-addressed store, hash-verified

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)); }
368

Callers 2

tan_impl_doubleFunction · 0.85
FL_TEST_FILEFunction · 0.85

Calls 2

tan_impl_doubleFunction · 0.85
tan_impl_floatFunction · 0.85

Tested by

no test coverage detected