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

◆ hypot_impl_float()

float fl::hypot_impl_float ( float x,
float y )

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

512 {
513#if FL_MATH_USE_LIBM
514 return ::hypotf(x, y);
515#else
516 return detail::sqrt_newton_<float>(x * x + y * y);
517#endif
518}
F sqrt_newton_(F value) FL_NOEXCEPT
Definition math.cpp.hpp:151

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

Referenced by hypot(), and hypotf().

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