Skip to content
Snippets Groups Projects
Commit 94270029 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

print duplicate vertex tag

parent f1cb0167
No related branches found
No related tags found
No related merge requests found
...@@ -1507,7 +1507,7 @@ void GModel::checkMeshCoherence(double tolerance) ...@@ -1507,7 +1507,7 @@ void GModel::checkMeshCoherence(double tolerance)
int num = 0; int num = 0;
for(unsigned int i = 0; i < vertices.size(); i++) for(unsigned int i = 0; i < vertices.size(); i++)
if(!vertices[i]->getIndex()){ if(!vertices[i]->getIndex()){
Msg::Info("Duplicate vertex at (%.16g,%.16g,%.16g)", Msg::Info("Duplicate vertex %d at (%.16g,%.16g,%.16g)", vertices[i]->getNum(),
vertices[i]->x(), vertices[i]->y(), vertices[i]->z()); vertices[i]->x(), vertices[i]->y(), vertices[i]->z());
num++; num++;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment