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

MSH_SURF_PLAN should be imposed AFTER mean plane computation

parent ecb3f560
No related branches found
No related tags found
No related merge requests found
// $Id: 2D_Mesh.cpp,v 1.37 2001-10-29 08:52:20 geuzaine Exp $ // $Id: 2D_Mesh.cpp,v 1.38 2001-11-01 09:41:32 geuzaine Exp $
/* /*
Maillage Delaunay d'une surface (Point insertion Technique) Maillage Delaunay d'une surface (Point insertion Technique)
...@@ -920,15 +920,13 @@ void Maillage_Surface (void *data, void *dum){ ...@@ -920,15 +920,13 @@ void Maillage_Surface (void *data, void *dum){
} }
int TypSurface = s->Typ; int TypSurface = s->Typ;
s->Typ = MSH_SURF_PLAN;
Plan_Moyen (pS, dum); Plan_Moyen (pS, dum);
Tree_Action (THEM->Points, Freeze_Vertex); Tree_Action (THEM->Points, Freeze_Vertex);
Tree_Action (s->Vertices, Freeze_Vertex); Tree_Action (s->Vertices, Freeze_Vertex);
Tree_Action (THEM->Points, Projette_Plan_Moyen); Tree_Action (THEM->Points, Projette_Plan_Moyen);
Tree_Action (s->Vertices, Projette_Plan_Moyen); Tree_Action (s->Vertices, Projette_Plan_Moyen);
Tree_Action (THEM->Curves, ActionEndTheCurve); Tree_Action (THEM->Curves, ActionEndTheCurve);
s->Typ = MSH_SURF_PLAN;
End_Surface (s); End_Surface (s);
ori = Calcule_Contours (s); ori = Calcule_Contours (s);
......
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