根据三角函数求两点的距离
getDistance([0, 0], [3, 4]); // 5getDistance([0, 0], [1, 1]); // Math.sqrt(2)Math.round(getDistance([0, 0], [1, Math.sqrt(3)])); // 2getDistance([0, 0], [0, 5]); // 5getDistance([0, 0], [5, 0]); // 5getDistance([0, 0], [-5, 0]); // 5getDistance([0, 0], [0, -5]); // 5 复制
getDistance([0, 0], [3, 4]); // 5getDistance([0, 0], [1, 1]); // Math.sqrt(2)Math.round(getDistance([0, 0], [1, Math.sqrt(3)])); // 2getDistance([0, 0], [0, 5]); // 5getDistance([0, 0], [5, 0]); // 5getDistance([0, 0], [-5, 0]); // 5getDistance([0, 0], [0, -5]); // 5
根据三角函数求两点的距离