fix scrambled bottom faces
This commit is contained in:
parent
da25951555
commit
465391d145
1 changed files with 1 additions and 1 deletions
|
@ -678,7 +678,7 @@ class LevelGeometries:
|
||||||
# bottom faces
|
# bottom faces
|
||||||
if bottom:
|
if bottom:
|
||||||
mesh.bottom = self._filter_faces(
|
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, ))
|
return tuple((mesh, ))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue