klyn.math.Math.hypot
method
public static hypot<FLOAT_TYPE extends AbstractFloat = Double>(x as FLOAT_TYPE, y as FLOAT_TYPE) as FLOAT_TYPE:
Description
Returns the Euclidean distance `sqrt(x*x + y*y)`.
import klyn.math

print(Math.hypot(3.0, 4.0))