• 判断某个点是否在某个线上

    参数

    • point: Point

    • path: Point[]

      路径、线

    返回 boolean

    isPointInPath([1, 2], [[0, 0], [2, 4]]); // true
    isPointInPath([2, 2], [[0, 0], [2, 4]]); // false

    isPointInPath([2, 2], [[0, 0], [4, 4]]); // true
    isPointInPath([1, 2], [[0, 0], [4, 4]]); // false
    isPointInPath([1, 2], [[0, 0], [2, 4], [4, 4]]); // true

    isPointInPath([3, 3], [[1, 1], [4, 4]]); // true