Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/Revit.IFC.Export/Exporter/BodyExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1685,7 +1685,7 @@ public static IFCAnyHandle ExportBodyAsAdvancedBrep(ExporterIFC exporterIFC, Ele
if (edgeLoopList.Count == 1)
faceBound = IFCInstanceExporter.CreateFaceOuterBound(file, edgeLoop, true);
else
faceBound = IFCInstanceExporter.CreateFaceBound(file, edgeLoop, false);
faceBound = IFCInstanceExporter.CreateFaceBound(file, edgeLoop, true);

bounds.Add(faceBound);

Expand Down