diff --git a/GeoLib/AnalyticalGeometry.cpp b/GeoLib/AnalyticalGeometry.cpp index e164355acc10c9888fdee17908a36bc713571c4a..4ad5213483e65c14e3085de8c5a381938a97fd64 100644 --- a/GeoLib/AnalyticalGeometry.cpp +++ b/GeoLib/AnalyticalGeometry.cpp @@ -100,6 +100,9 @@ bool lineSegmentIntersect( GeoLib::Point const& d, GeoLib::Point& s) { + if (! pointsOnAPlane(a, b, c, d)) + return false; + MathLib::Vector3 const v(a, b); MathLib::Vector3 const w(c, d); MathLib::Vector3 const qp(a, c);