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

◆ hypot_impl_double()

double fl::hypot_impl_double ( double x,
double y )

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

520 {
521#if FL_MATH_USE_LIBM
522 return ::hypot(x, y);
523#else
524 return detail::sqrt_newton_<double>(x * x + y * y);
525#endif
526}
F sqrt_newton_(F value) FL_NOEXCEPT
Definition math.cpp.hpp:151

References fl::detail::sqrt_newton_(), x, and y.

Referenced by hypot().

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