Skip to content
Snippets Groups Projects
Commit feecb79e authored by Tom Fischer's avatar Tom Fischer
Browse files

[GL] SimplePolygonTree: rename _childs -> _children.

parent 5971b69e
No related branches found
No related tags found
No related merge requests found
......@@ -50,8 +50,8 @@ bool GMSHPolygonTree::insertStation(GeoLib::Point const* station)
{
if (_node_polygon->isPntInPolygon(*station)) {
// try to insert station into the child nodes
for (std::list<SimplePolygonTree*>::const_iterator it (_childs.begin());
it != _childs.end(); ++it) {
for (std::list<SimplePolygonTree*>::const_iterator it (_children.begin());
it != _children.end(); ++it) {
if (((*it)->getPolygon())->isPntInPolygon (*station)) {
bool rval(dynamic_cast<GMSHPolygonTree*>((*it))->insertStation (station));
// stop recursion if sub SimplePolygonTree is a leaf
......@@ -71,9 +71,9 @@ bool GMSHPolygonTree::insertStation(GeoLib::Point const* station)
void GMSHPolygonTree::insertPolyline (GeoLib::PolylineWithSegmentMarker * ply)
{
if (_node_polygon->isPartOfPolylineInPolygon(*ply)) {
// check childs
for (std::list<SimplePolygonTree*>::const_iterator it (_childs.begin());
it != _childs.end(); ++it) {
// check children
for (std::list<SimplePolygonTree*>::const_iterator it (_children.begin());
it != _children.end(); ++it) {
dynamic_cast<GMSHPolygonTree*>((*it))->insertPolyline (ply);
}
_plys.push_back(ply);
......@@ -190,8 +190,8 @@ void GMSHPolygonTree::createGMSHPoints(std::vector<FileIO::GMSH::GMSHPoint*> & g
}
}
// walk through childs
for (std::list<SimplePolygonTree*>::const_iterator it (_childs.begin()); it != _childs.end(); ++it) {
// walk through children
for (std::list<SimplePolygonTree*>::const_iterator it (_children.begin()); it != _children.end(); ++it) {
dynamic_cast<GMSHPolygonTree*>((*it))->createGMSHPoints(gmsh_pnts);
}
}
......@@ -235,7 +235,7 @@ void GMSHPolygonTree::writeLineConstraints(std::size_t &line_offset, std::size_t
void GMSHPolygonTree::writeSubPolygonsAsLineConstraints(std::size_t &line_offset, std::size_t sfc_number, std::ostream& out) const
{
for (std::list<SimplePolygonTree*>::const_iterator it (_childs.begin()); it != _childs.end(); ++it) {
for (std::list<SimplePolygonTree*>::const_iterator it (_children.begin()); it != _children.end(); ++it) {
dynamic_cast<GMSHPolygonTree*>((*it))->writeSubPolygonsAsLineConstraints(line_offset, sfc_number, out);
}
......@@ -309,7 +309,7 @@ void GMSHPolygonTree::getPointsFromSubPolygons(std::vector<GeoLib::Point const*>
pnts.push_back(_node_polygon->getPoint(k));
}
for (std::list<SimplePolygonTree*>::const_iterator it (_childs.begin()); it != _childs.end(); ++it) {
for (std::list<SimplePolygonTree*>::const_iterator it (_children.begin()); it != _children.end(); ++it) {
dynamic_cast<GMSHPolygonTree*>((*it))->getPointsFromSubPolygons(pnts);
}
}
......@@ -321,7 +321,7 @@ void GMSHPolygonTree::getStationsInsideSubPolygons(std::vector<GeoLib::Point con
stations.push_back(_stations[k]);
}
for (std::list<SimplePolygonTree*>::const_iterator it (_childs.begin()); it != _childs.end(); ++it) {
for (std::list<SimplePolygonTree*>::const_iterator it (_children.begin()); it != _children.end(); ++it) {
dynamic_cast<GMSHPolygonTree*>((*it))->getStationsInsideSubPolygons(stations);
}
}
......
......@@ -58,7 +58,7 @@ public:
* polyline, i.e. the two intersecting line segments are splitt into four line segment.
*
* Line segments of the polyline that are completely within the polygon are inserted into
* the internal vector _gmsh_lines_for_constraints. The childs of this GMSHPolygonTree node
* the internal vector _gmsh_lines_for_constraints. The children of this GMSHPolygonTree node
* are checked recursively.
* @param ply the polyline that should be inserted
*/
......
......@@ -22,7 +22,7 @@ SimplePolygonTree::SimplePolygonTree(Polygon * polygon, SimplePolygonTree * pare
SimplePolygonTree::~SimplePolygonTree()
{
for (auto * child : _childs) {
for (auto * child : _children) {
delete child;
}
}
......@@ -36,15 +36,15 @@ void SimplePolygonTree::insertSimplePolygonTree (SimplePolygonTree* polygon_hier
{
const Polygon* polygon (polygon_hierarchy->getPolygon());
bool nfound (true);
for (std::list<SimplePolygonTree*>::const_iterator it (_childs.begin());
it != _childs.end() && nfound; ++it) {
for (std::list<SimplePolygonTree*>::const_iterator it (_children.begin());
it != _children.end() && nfound; ++it) {
if (((*it)->getPolygon())->isPolylineInPolygon (*(polygon))) {
(*it)->insertSimplePolygonTree (polygon_hierarchy);
nfound = false;
}
}
if (nfound) {
_childs.push_back (polygon_hierarchy);
_children.push_back (polygon_hierarchy);
polygon_hierarchy->setParent(this);
}
}
......
......@@ -44,7 +44,7 @@ public:
*/
bool isPolygonInside (const SimplePolygonTree* polygon_tree) const;
/** Either insert the given SimplePolygonTree in one of the existing
* childs or as a new child.
* children or as a new child.
*/
void insertSimplePolygonTree (SimplePolygonTree* polygon_tree);
......@@ -54,8 +54,8 @@ public:
*/
const Polygon* getPolygon () const;
/** returns the number of childs */
std::size_t getNChildren() const { return _childs.size(); }
/** returns the number of children */
std::size_t getNChildren() const { return _children.size(); }
protected:
/**
......@@ -71,7 +71,7 @@ protected:
* list of polygons (represented by SimplePolygonTree nodes) contained
* in the _node_polygon
*/
std::list<SimplePolygonTree*> _childs;
std::list<SimplePolygonTree*> _children;
private:
void setParent(SimplePolygonTree* parent)
......
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