Skip to content
Snippets Groups Projects
Commit d1d091d0 authored by Emilie Marchandise's avatar Emilie Marchandise
Browse files

pp

parent 9846322b
No related branches found
No related tags found
No related merge requests found
...@@ -111,7 +111,6 @@ static double max_edge_curvature(const GVertex *gv) ...@@ -111,7 +111,6 @@ static double max_edge_curvature(const GVertex *gv)
static double max_surf_curvature(const GEdge *ge, double u) static double max_surf_curvature(const GEdge *ge, double u)
{ {
//printf("max surf \n");
double val = 0; double val = 0;
std::list<GFace *> faces = ge->faces(); std::list<GFace *> faces = ge->faces();
std::list<GFace *>::iterator it = faces.begin(); std::list<GFace *>::iterator it = faces.begin();
......
...@@ -22,7 +22,6 @@ typedef struct { ...@@ -22,7 +22,6 @@ typedef struct {
static double F_Lc(GEdge *ge, double t) static double F_Lc(GEdge *ge, double t)
{ {
//printf("FLC \n");
GPoint p = ge->point(t); GPoint p = ge->point(t);
double lc_here; double lc_here;
...@@ -30,8 +29,6 @@ static double F_Lc(GEdge *ge, double t) ...@@ -30,8 +29,6 @@ static double F_Lc(GEdge *ge, double t)
double t_begin = bounds.low(); double t_begin = bounds.low();
double t_end = bounds.high(); double t_end = bounds.high();
//printf("FLC going to BGM ! \n");
if(t == t_begin) if(t == t_begin)
lc_here = BGM_MeshSize(ge->getBeginVertex(), t, 0, p.x(), p.y(), p.z()); lc_here = BGM_MeshSize(ge->getBeginVertex(), t, 0, p.x(), p.y(), p.z());
else if(t == t_end) else if(t == t_end)
...@@ -320,8 +317,6 @@ void meshGEdge::operator() (GEdge *ge) ...@@ -320,8 +317,6 @@ void meshGEdge::operator() (GEdge *ge)
CTX::instance()->mesh.lcIntegrationPrecision); CTX::instance()->mesh.lcIntegrationPrecision);
N = std::max(ge->minimumMeshSegments() + 1, (int)(a + 1.)); N = std::max(ge->minimumMeshSegments() + 1, (int)(a + 1.));
} }
//printf("going to exit !!");
//exit(1);
// force odd number of points for if blossom is used for // force odd number of points for if blossom is used for
// recombination // recombination
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment