Calculates the length of the
hypotenuse of a right-angled triangle with sides of length x and y.
The hypotenuse is the value of the square root of
the sums of the squares of x and y:
sqrt($(POW x, 2) + $(POW y, 2))
Note that hypot(x, y), hypot(y, x) and
hypot(x, -y) are equivalent.
Calculates the length of the hypotenuse of a right-angled triangle with sides of length x and y. The hypotenuse is the value of the square root of the sums of the squares of x and y:
sqrt($(POW x, 2) + $(POW y, 2))
Note that hypot(x, y), hypot(y, x) and hypot(x, -y) are equivalent.