Remove wire intersection check to preserve faces

This commit is contained in:
Jesse Vander Does
2021-01-27 13:15:47 -06:00
committed by Thomas Krijnen
parent 76d61cb4d4
commit 2829a0764b
+1 -6
View File
@@ -1157,12 +1157,7 @@ bool IfcGeom::Kernel::convert_wire_to_faces(const TopoDS_Wire& w, TopoDS_Compoun
}
TopTools_ListOfShape results;
if (wire_intersections(w, results)) {
Logger::Warning("Self-intersections with " + boost::lexical_cast<std::string>(results.Extent()) + " cycles detected");
} else {
results.Clear();
results.Append(w);
}
results.Append(w);
TopoDS_Compound C;
BRep_Builder B;