From 23a2ff629c2518f9a4eb51094fa9fb5a79d2274e Mon Sep 17 00:00:00 2001 From: acgessler Date: Sun, 20 Jan 2013 15:16:20 +0100 Subject: [PATCH] - Ifc: drop flawed assertion. --- code/IFCGeometry.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/code/IFCGeometry.cpp b/code/IFCGeometry.cpp index 03b8d4f80..0b10933a6 100644 --- a/code/IFCGeometry.cpp +++ b/code/IFCGeometry.cpp @@ -1408,7 +1408,6 @@ bool IntersectingLineSegments(const IfcVector2& n0, const IfcVector2& n1, IfcFloat s0; IfcFloat s1; if(fabs(n0_to_n1.x) > e) { - ai_assert(fabs(n0_to_m0.x) > e); s0 = n0_to_m0.x / n0_to_n1.x; s1 = n0_to_m1.x / n0_to_n1.x; }