ポイントが2Dライン上にあるかどうかを確認する方法はわかっていますが、3Dでこれをやりたいのですが。何か案は?ポイントが3Dライン上にあるかどうかを確認しますか?
// slope from point 1 to point 3
var p13:Number = (Math.atan2 (end.x - start.x, end.y - start.y)) * toDegrees;
// slope from point 1 to point 2 -- matches?
var p12:Number = (Math.atan2 (point.x - start.x, point.y - start.y)) * toDegrees;
return Math.round(p12) == Math.round(p13);
アルゴリズム的に言えば、これは[Math SE](http://math.stackexchange.com/)上でなければなりません。 – zzzzBov
それはここで尋ねられると思うと思うと思うhttp://stackoverflow.com/questions/563198/how-do-you-detect-where-two-line-segments-intersect –