Description
Attached mesh is not correctly plotted with Dash VTK. No issue with ParaView or PyVista.
No problem with simpler meshes with Dash VTK.
mesh.zip
Steps/Code to Reproduce
importdashimportdash_vtkfromdash_vtk.utilsimportto_mesh_stateimportpyvistamesh=pyvista.read("mesh.dat")
mesh_state=to_mesh_state(mesh)
app=dash.Dash(__name__)
app.layout=dash.html.Div(
dash_vtk.View(
dash_vtk.GeometryRepresentation(
dash_vtk.Mesh(state=mesh_state),
property={"edgeVisibility": True},
),
cameraPosition=[1005.0, -5000.0, -1500.0],
cameraViewUp=[0.0, 0.0, 1.0],
),
style={"width": "600px", "height": "600px"},
)
if__name__=="__main__":
app.run_server(debug=True)Expected Results

Actual Results

Versions
dash == 2.0.0
dash_vtk == 0.0.9
Description
Attached mesh is not correctly plotted with Dash VTK. No issue with ParaView or PyVista.
No problem with simpler meshes with Dash VTK.
mesh.zip
Steps/Code to Reproduce
Expected Results
Actual Results
Versions
dash == 2.0.0dash_vtk == 0.0.9