2020-03-31
描述
返回两个点之间的距离。
提示
- 使用
Math.hypot()
来计算两点之间的距离
代码
const distance = (x0, y0, x1, y1) => Math.hypot(x1 - x0, y1 - y0);
示例
求两个坐标之间的距离:
distance(1, 1, 2, 3); // 2.23606797749979
2020-03-31
返回两个点之间的距离。
Math.hypot()
来计算两点之间的距离const distance = (x0, y0, x1, y1) => Math.hypot(x1 - x0, y1 - y0);
求两个坐标之间的距离:
distance(1, 1, 2, 3); // 2.23606797749979