When I try to open a MeshEditor, using
editor.open( mesh, mesh.type(), mesh.topology().dim(), mesh.geometry().dim() )
I get the following TypeError:
in method 'MeshEditor_open', argument 3 of type 'std::string'
From inspecting the documentation, I would expect this to work. It works when I replace the second argument with "triangle"
for 2d meshes. Am I missing something? If not, what's the best way of generically specifying the cell type for both 2d and 3d meshes?