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

fix mesh size for embedded vertices with non-meshadapt algos

parent c0da8301
No related branches found
No related tags found
No related merge requests found
......@@ -158,7 +158,7 @@ void buildMeshGenerationDataStructures(GFace *gf,
std::list<GVertex*>::iterator itvx = emb_vertx.begin();
while(itvx != emb_vertx.end()){
MVertex *v = *((*itvx)->mesh_vertices.begin());
vSizesMap[v] = std::max(vSizesMap[v], (*itvx)->prescribedMeshSizeAtVertex());
vSizesMap[v] = std::min(vSizesMap[v], (*itvx)->prescribedMeshSizeAtVertex());
++itvx;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment