tethys-feature-service/node_modules/proj4/lib/common/hypot.js
2023-10-02 15:04:02 +02:00

9 lines
183 B
JavaScript

export default function(x, y) {
x = Math.abs(x);
y = Math.abs(y);
var a = Math.max(x, y);
var b = Math.min(x, y) / (a ? a : 1);
return a * Math.sqrt(1 + Math.pow(b, 2));
}