fix scrambled bottom faces

This commit is contained in:
Laura Klünder 2017-11-18 13:31:33 +01:00
parent da25951555
commit 465391d145

View file

@ -678,7 +678,7 @@ class LevelGeometries:
# bottom faces
if bottom:
mesh.bottom = self._filter_faces(
np.dstack((self.vertices[np.flip(geom_faces, axis=1)], lower[geom_faces]))
np.flip(np.dstack((self.vertices[geom_faces], lower[geom_faces])), axis=1)
)
return tuple((mesh, ))