1
0
mirror of https://github.com/NGSolve/netgen.git synced 2025-04-23 11:42:04 +05:00

cgns: flip normals of 2d elements

This commit is contained in:
Matthias Hochsteger 2020-03-19 20:50:27 +01:00
parent 1f78f900dd
commit b1d65912ec

@ -78,7 +78,7 @@ namespace netgen::cg
Element2d el(np); Element2d el(np);
for (auto i : Range(np)) for (auto i : Range(np))
el[i] = verts[map[i]]; el[i] = verts[i];
return el; return el;
} }