Wrong order of arguments resulted in wrong visualization
This commit is contained in:
Martin Diehl 2020-01-21 14:37:42 +01:00
parent 1857a5e58a
commit 5b63779e5c
1 changed files with 1 additions and 1 deletions

View File

@ -906,7 +906,7 @@ class DADF5():
n_nodes = 8
for i in f['/geometry/T_c']:
vtk_geom.InsertNextCell(n_nodes,vtk_type,i-1)
vtk_geom.InsertNextCell(vtk_type,n_nodes,i-1)
elif mode == 'Point':
Points = vtk.vtkPoints()