UNPKG

334 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.distanceSquareRoot = void 0;
4function distanceSquareRoot(a, b) {
5 return Math.sqrt((a[0] - b[0]) * (a[0] - b[0]) + (a[1] - b[1]) * (a[1] - b[1]));
6}
7exports.distanceSquareRoot = distanceSquareRoot;
8//# sourceMappingURL=distance-square-root.js.map
\No newline at end of file