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