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

◆ acos_impl_double()

double fl::acos_impl_double ( double value)

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

579 {
580#if FL_MATH_USE_LIBM
581 return ::acos(value);
582#else
583 const double kPiHalf = 1.57079632679489661923;
584 return kPiHalf - asin_impl_double(value);
585#endif
586}
constexpr int type_rank< T >::value
double asin_impl_double(double value)
Definition math.cpp.hpp:557

References asin_impl_double(), and type_rank< T >::value.

Referenced by acos().

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