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

*** empty log message ***

parent c239947c
No related branches found
No related tags found
No related merge requests found
// $Id: Print_Mesh.cpp,v 1.15 2001-02-18 18:11:17 geuzaine Exp $ // $Id: Print_Mesh.cpp,v 1.16 2001-02-26 10:26:37 geuzaine Exp $
#include "Gmsh.h" #include "Gmsh.h"
#include "Const.h" #include "Const.h"
...@@ -242,9 +242,13 @@ void add_msh_elements (Mesh * M){ ...@@ -242,9 +242,13 @@ void add_msh_elements (Mesh * M){
List_Read (p->Entities, j, &Num); List_Read (p->Entities, j, &Num);
pv->Num = abs (Num); pv->Num = abs (Num);
MSH_PHYSICAL_ORI = sign (Num); MSH_PHYSICAL_ORI = sign (Num);
if (Tree_Query (M->Points, &pv))
add_msh_point (pv);
else{
if (Tree_Query (M->Vertices, &pv)) if (Tree_Query (M->Vertices, &pv))
add_msh_point (pv); add_msh_point (pv);
} }
}
break; break;
case MSH_PHYSICAL_LINE: case MSH_PHYSICAL_LINE:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment