GridIn<dim> grid_in;
grid_in.attach_triangulation(mesh);
std::ifstream input_mesh("cube.inp");
grid_in.read_abaqus(input_mesh);
and it works fine:
But, with the same lines of code, for importing Tetrahedron mesh I get:
which obviously is not correct. What should I do here?
Best regards,
Masoud