Skip to content
Snippets Groups Projects
Commit 2696f1a5 authored by Jean-François Remacle's avatar Jean-François Remacle
Browse files

fixed bug on drawing compound curves

parent 3326d001
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,7 @@ class drawGEdge {
if(e->geomType() == GEntity::DiscreteCurve) return;
if(e->geomType() == GEntity::PartitionCurve) return;
if(e->geomType() == GEntity::BoundaryLayerCurve) return;
if(e->geomType() == GEntity::CompoundCurve) return;
// if(e->geomType() == GEntity::CompoundCurve) return;
bool select = (_ctx->render_mode == drawContext::GMSH_SELECT &&
e->model() == GModel::current());
......
......@@ -1026,7 +1026,7 @@ bool meshGenerator(GFace *gf, int RECUR_ITER,
outputScalarField(m->triangles, name, 1);
}
if(1){
if(0){
std::list<BDS_Face*>::iterator itt = m->triangles.begin();
while (itt != m->triangles.end()){
BDS_Face *t = *itt;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment