FastLED 3.9.15
Loading...
Searching...
No Matches

◆ tan_impl_double()

double fl::tan_impl_double ( double value)

Definition at line 598 of file math.cpp.hpp.

598 {
599#if FL_MATH_USE_LIBM
600 return ::tan(value);
601#else
602 const double c = detail::cos_reduce_<double>(value);
603 if (c == 0.0) return 0.0;
605#endif
606}
F sin_reduce_(F x) FL_NOEXCEPT
Definition math.cpp.hpp:184
F cos_reduce_(F x) FL_NOEXCEPT
Definition math.cpp.hpp:202
constexpr int type_rank< T >::value

References fl::detail::cos_reduce_(), fl::detail::sin_reduce_(), and type_rank< T >::value.

Referenced by tan().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: