これは JS の問題というよりも数学的な問題ですが、お役に立てば幸いです。
ポリゴンの周りにウェイポイントを作成しようとしています。ライン上を歩くことができるはずです。次のケースを観察する必要があります ( trueは、その方法が不可能であることを意味します)。
私のスクリプトでは、ケース 2 とケース 7 を同時に観察するのに問題があります。ポリゴンは、5 つのオブジェクト (ポイント) を含む配列です。A と B は赤い線のポイントです。ここに私のjsFiddleがあります。
// check if point is in polygon
var intersectLinePolygon = function(A, B, poly){
var result = false;
for (var i = 0; i < poly.length; i++){
var C = { 'x':poly[i].x, 'y':poly[i].y };
var D = {};
// if it's not the last point, take the next
if (i != poly.length-1){ D.x = poly[i+1].x; D.y = poly[i+1].y; }
// if it's the last point, take the first
else { D.x = poly[0].x; D.y = poly[0].y; }
if (intersectLineLine(A, B, C, D)){ result = true; }
}
return result;
};
// check if there is an intersection between two lines
var intersectLineLine = function(A, B, C, D){
if (
(B.x == C.x && B.y == C.y) ||
(B.x == D.x && B.y == D.y) ||
(A.x == C.x && A.y == C.y) ||
(A.x == D.x && A.y == D.y)
){ return false; }
else { return (ccw(A,C,D) != ccw(B,C,D) && ccw(A,B,C) != ccw(A,B,D)); }
};
// helper function for intersectLineLine
var ccw = function(A, B, C){ return ((C.y-A.y)*(B.x-A.x) > (B.y-A.y)*(C.x-A.x)); };