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

No commit message

No commit message
parent 8d9f938d
Branches
Tags
No related merge requests found
...@@ -363,7 +363,6 @@ class GModel ...@@ -363,7 +363,6 @@ class GModel
void detectEdges(double _tresholdAngle); void detectEdges(double _tresholdAngle);
void classifyFaces(std::set<GFace*> &_faces); void classifyFaces(std::set<GFace*> &_faces);
// glue entities in the model (assume a tolerance eps and merge // glue entities in the model (assume a tolerance eps and merge
// vertices that are too close, then merge edges, faces and // vertices that are too close, then merge edges, faces and
// regions). Warning: the gluer changes the geometric model, so that // regions). Warning: the gluer changes the geometric model, so that
......
...@@ -1081,11 +1081,6 @@ int GModel::readSTL(const std::string &name, double tolerance) ...@@ -1081,11 +1081,6 @@ int GModel::readSTL(const std::string &name, double tolerance)
GFace *face = new discreteFace(this, getMaxElementaryNumber(2) + 1); GFace *face = new discreteFace(this, getMaxElementaryNumber(2) + 1);
faces.push_back(face); faces.push_back(face);
add(face); add(face);
//GRegion *region = new GRegion(this, getMaxElementaryNumber(3) + 1);
//add(region);
//std::list<GFace*> _temp;
//_temp.push_back(face);
//region->set(_temp);
} }
// create triangles using unique vertices // create triangles using unique vertices
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment