diff --git a/src/NETGENPlugin/NETGENPlugin_Remesher_2D.cxx b/src/NETGENPlugin/NETGENPlugin_Remesher_2D.cxx index e35168d..77415cc 100644 --- a/src/NETGENPlugin/NETGENPlugin_Remesher_2D.cxx +++ b/src/NETGENPlugin/NETGENPlugin_Remesher_2D.cxx @@ -216,8 +216,8 @@ namespace gp_XYZ normal; if ( SMESH_MeshAlgos::FaceNormal( f, normal )) { - TIDSortedElemSet allFaces; - editor.Reorient2D( allFaces, normal, f ); + TIDSortedElemSet allFaces, refFaces = { f }; + editor.Reorient2D( allFaces, normal, refFaces, /*allowNonManifold=*/true ); break; } }