Skip to content
Snippets Groups Projects
Commit 5e50072a authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

never recombine a face that is part of a compound

parent f35e04aa
No related branches found
No related tags found
No related merge requests found
......@@ -3127,6 +3127,9 @@ int recombineWithBlossom(GFace *gf, double dx, double dy,
static int _recombineIntoQuads(GFace *gf, int recur_level, bool cubicGraph = 1)
{
// never recombine a face that is part of a compound!
if(gf->getCompound()) return 0;
int success = 1;
std::set<MVertex*> emb_edgeverts;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment