点
路径、线
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
判断某个点是否在某个线上