Skip to content
Snippets Groups Projects

Normal fix

Merged Andreas Klöckner requested to merge normal-fix into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
+ 4
4
@@ -288,10 +288,10 @@ class SimplexElementGroup(MeshElementGroup):
@@ -288,10 +288,10 @@ class SimplexElementGroup(MeshElementGroup):
)
)
elif self.dim == 3:
elif self.dim == 3:
return (
return (
(0, 1, 2),
(0, 2, 1),
(0, 3, 1),
(0, 1, 3),
(0, 2, 3),
(0, 3, 2),
(1, 3, 2)
(1, 2, 3)
)
)
else:
else:
raise NotImplementedError("dim=%d" % self.dim)
raise NotImplementedError("dim=%d" % self.dim)
Loading