boundarylayers - fix inverted tets

This commit is contained in:
Christopher Lackner 2020-11-24 11:58:26 +01:00
parent d7a1dda042
commit 2287c5c0c9

View File

@ -546,9 +546,9 @@ namespace netgen
for(auto& p : nel.PNums())
{
if(p == moved[0])
p = p2;
if(p == fixed[0])
p = p1;
else if(p == fixed[0])
p = p2;
}
p1 = p2;
mesh.AddVolumeElement(nel);