From 452ab6e5bc185948f0debb796d254556cf957dd5 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Mon, 17 Sep 2018 11:33:40 +0200 Subject: [PATCH] Fix flaw in vertex-edge distance used to limit tolerance in boolean ops --- src/ifcgeom/IfcGeomFunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcgeom/IfcGeomFunctions.cpp b/src/ifcgeom/IfcGeomFunctions.cpp index 98cf09568e..eb0f8c9c4f 100644 --- a/src/ifcgeom/IfcGeomFunctions.cpp +++ b/src/ifcgeom/IfcGeomFunctions.cpp @@ -3295,7 +3295,7 @@ namespace { TopoDS_Vertex v1, v2; TopExp::Vertices(e, v1, v2); - if (v.IsEqual(v1) || v.IsEqual(v2)) { + if (v.IsSame(v1) || v.IsSame(v2)) { continue; }