Skip to content

Commit 8864b85

Browse files
committed
fix(BRepMeshesManifoldInspectionResult): Fixed string function to output non manifold facets as well
1 parent f4efd80 commit 8864b85

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/geode/inspector/criterion/manifold/brep_meshes_manifold.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ namespace geode
7373
{
7474
absl::StrAppend( &message, brep_non_manifold_edges.string() );
7575
}
76+
if( brep_non_manifold_facets.nb_issues() != 0 )
77+
{
78+
absl::StrAppend( &message, brep_non_manifold_facets.string() );
79+
}
7680
if( !message.empty() )
7781
{
7882
return message;

0 commit comments

Comments
 (0)