diff --git a/Geo/GModel.cpp b/Geo/GModel.cpp index 5ae903f499a97ff0e7ace963c369ee9299dfad14..99a0931426eb8eb4a91db85fd226b1e47e00c2e0 100644 --- a/Geo/GModel.cpp +++ b/Geo/GModel.cpp @@ -785,8 +785,9 @@ void GModel::_storeVerticesInEntities(std::map<int, MVertex*> &vertices) MVertex *v = it->second; GEntity *ge = v->onWhat(); if(ge){ - if(ge->dim() || ge->mesh_vertices.empty()) // special case for points + if(ge->dim() || ge->mesh_vertices.empty()){ // special case for points ge->mesh_vertices.push_back(v); + } } else delete v; // we delete all unused vertices @@ -800,8 +801,9 @@ void GModel::_storeVerticesInEntities(std::vector<MVertex*> &vertices) if(v){ // the vector is allowed to have null entries GEntity *ge = v->onWhat(); if(ge) { - if(ge->dim() || ge->mesh_vertices.empty()) // special case for points + if(ge->dim() || ge->mesh_vertices.empty()){ // special case for points ge->mesh_vertices.push_back(v); + } } else delete v; // we delete all unused vertices diff --git a/Post/PViewDataListIO.cpp b/Post/PViewDataListIO.cpp index 21219f312f55d9e353cd1bc5a0ca06084878e6ee..ca0cef1ff8eca53a06be6551a15a4c571473b900 100644 --- a/Post/PViewDataListIO.cpp +++ b/Post/PViewDataListIO.cpp @@ -442,7 +442,7 @@ static void writeElementMSH(FILE *fp, int num, int nbnod, pVertex nod[8], { switch(dim){ case 0: - fprintf(fp, "%d 15 0 %d\n", num, nod[0].Num); + fprintf(fp, "%d 15 2 0 %d %d\n", num, num, nod[0].Num); break; case 1: fprintf(fp, "%d 1 0 %d %d\n", num, nod[0].Num, nod[1].Num);