hypot static method

double hypot(
  1. double a,
  2. double b
)

Implementation

@pragma("wasm:prefer-inline")
@pragma("vm:prefer-inline")
@pragma("dart2js:prefer-inline")
static double hypot(double a, double b) => math.sqrt(a * a + b * b);