• 根据三角函数求两点的距离

    参数

    • origin: Point
    • target: Point

    返回 number

    getDistance([0, 0], [3, 4]); // 5
    getDistance([0, 0], [1, 1]); // Math.sqrt(2)
    Math.round(getDistance([0, 0], [1, Math.sqrt(3)])); // 2

    getDistance([0, 0], [0, 5]); // 5
    getDistance([0, 0], [5, 0]); // 5
    getDistance([0, 0], [-5, 0]); // 5
    getDistance([0, 0], [0, -5]); // 5