Skip to content
Snippets Groups Projects
Commit 62300af9 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MGTL] Remove unused getMesh from the interface

parent 242f013a
No related branches found
No related tags found
No related merge requests found
...@@ -102,18 +102,18 @@ namespace MeshGeoToolsLib ...@@ -102,18 +102,18 @@ namespace MeshGeoToolsLib
BoundaryElementsAlongPolyline::BoundaryElementsAlongPolyline( BoundaryElementsAlongPolyline::BoundaryElementsAlongPolyline(
MeshLib::Mesh const& mesh, MeshNodeSearcher const& mshNodeSearcher, MeshLib::Mesh const& mesh, MeshNodeSearcher const& mshNodeSearcher,
GeoLib::Polyline const& ply) GeoLib::Polyline const& ply)
: _mesh(mesh), _ply(ply) : _ply(ply)
{ {
// search nodes and elements located along the polyline // search nodes and elements located along the polyline
auto node_ids_on_poly = mshNodeSearcher.getMeshNodeIDs(ply); auto node_ids_on_poly = mshNodeSearcher.getMeshNodeIDs(ply);
MeshLib::ElementSearch es(_mesh); MeshLib::ElementSearch es(mesh);
es.searchByNodeIDs(node_ids_on_poly); es.searchByNodeIDs(node_ids_on_poly);
auto const& ele_ids_near_ply = es.getSearchedElementIDs(); auto const& ele_ids_near_ply = es.getSearchedElementIDs();
// check all edges of the elements near the polyline // check all edges of the elements near the polyline
for (auto ele_id : ele_ids_near_ply) for (auto ele_id : ele_ids_near_ply)
{ {
auto* e = _mesh.getElement(ele_id); auto* e = mesh.getElement(ele_id);
// skip line elements // skip line elements
if (e->getDimension() == 1) if (e->getDimension() == 1)
{ {
......
...@@ -46,9 +46,6 @@ public: ...@@ -46,9 +46,6 @@ public:
/// destructor /// destructor
virtual ~BoundaryElementsAlongPolyline(); virtual ~BoundaryElementsAlongPolyline();
/// return the mesh object
MeshLib::Mesh const& getMesh() const { return _mesh; }
/** /**
* Deploying this method the user can get access to the underlying * Deploying this method the user can get access to the underlying
* GeoLib::Polyline. * GeoLib::Polyline.
...@@ -67,7 +64,6 @@ public: ...@@ -67,7 +64,6 @@ public:
} }
private: private:
MeshLib::Mesh const& _mesh;
GeoLib::Polyline const& _ply; GeoLib::Polyline const& _ply;
std::vector<MeshLib::Element*> _boundary_elements; std::vector<MeshLib::Element*> _boundary_elements;
}; };
......
...@@ -26,7 +26,7 @@ namespace MeshGeoToolsLib ...@@ -26,7 +26,7 @@ namespace MeshGeoToolsLib
BoundaryElementsAtPoint::BoundaryElementsAtPoint( BoundaryElementsAtPoint::BoundaryElementsAtPoint(
MeshLib::Mesh const& mesh, MeshNodeSearcher const& mshNodeSearcher, MeshLib::Mesh const& mesh, MeshNodeSearcher const& mshNodeSearcher,
GeoLib::Point const& point, const bool multiple_nodes_allowed) GeoLib::Point const& point, const bool multiple_nodes_allowed)
: _mesh(mesh), _point(point) : _point(point)
{ {
auto const node_ids = mshNodeSearcher.getMeshNodeIDs(_point); auto const node_ids = mshNodeSearcher.getMeshNodeIDs(_point);
...@@ -62,7 +62,7 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint( ...@@ -62,7 +62,7 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint(
if (node_ids.size() == 1) if (node_ids.size() == 1)
{ {
std::array<MeshLib::Node*, 1> const nodes = { std::array<MeshLib::Node*, 1> const nodes = {
{const_cast<MeshLib::Node*>(_mesh.getNode(node_ids[0]))}}; {const_cast<MeshLib::Node*>(mesh.getNode(node_ids[0]))}};
_boundary_elements.push_back(new MeshLib::Point{nodes, node_ids[0]}); _boundary_elements.push_back(new MeshLib::Point{nodes, node_ids[0]});
return; return;
...@@ -103,7 +103,7 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint( ...@@ -103,7 +103,7 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint(
MathLib::sqrDist(*mesh_nodes[nearest_node_id], point)); MathLib::sqrDist(*mesh_nodes[nearest_node_id], point));
std::array<MeshLib::Node*, 1> const nodes = { std::array<MeshLib::Node*, 1> const nodes = {
{const_cast<MeshLib::Node*>(_mesh.getNode(nearest_node_id))}}; {const_cast<MeshLib::Node*>(mesh.getNode(nearest_node_id))}};
_boundary_elements.push_back(new MeshLib::Point{nodes, nearest_node_id}); _boundary_elements.push_back(new MeshLib::Point{nodes, nearest_node_id});
} }
......
...@@ -46,11 +46,6 @@ public: ...@@ -46,11 +46,6 @@ public:
~BoundaryElementsAtPoint(); ~BoundaryElementsAtPoint();
MeshLib::Mesh const& getMesh() const
{
return _mesh;
}
GeoLib::Point const& getPoint() const GeoLib::Point const& getPoint() const
{ {
return _point; return _point;
...@@ -63,7 +58,6 @@ public: ...@@ -63,7 +58,6 @@ public:
} }
private: private:
MeshLib::Mesh const& _mesh;
GeoLib::Point const& _point; GeoLib::Point const& _point;
std::vector<MeshLib::Element*> _boundary_elements; std::vector<MeshLib::Element*> _boundary_elements;
}; };
......
...@@ -20,18 +20,18 @@ namespace MeshGeoToolsLib ...@@ -20,18 +20,18 @@ namespace MeshGeoToolsLib
BoundaryElementsOnSurface::BoundaryElementsOnSurface( BoundaryElementsOnSurface::BoundaryElementsOnSurface(
MeshLib::Mesh const& mesh, MeshNodeSearcher const& mshNodeSearcher, MeshLib::Mesh const& mesh, MeshNodeSearcher const& mshNodeSearcher,
GeoLib::Surface const& sfc) GeoLib::Surface const& sfc)
: _mesh(mesh), _sfc(sfc) : _sfc(sfc)
{ {
// search elements near the surface // search elements near the surface
auto node_ids_on_sfc = mshNodeSearcher.getMeshNodeIDs(sfc); auto node_ids_on_sfc = mshNodeSearcher.getMeshNodeIDs(sfc);
MeshLib::ElementSearch es(_mesh); MeshLib::ElementSearch es(mesh);
es.searchByNodeIDs(node_ids_on_sfc); es.searchByNodeIDs(node_ids_on_sfc);
auto& ele_ids_near_sfc = es.getSearchedElementIDs(); auto& ele_ids_near_sfc = es.getSearchedElementIDs();
// get a list of faces made of the nodes // get a list of faces made of the nodes
for (auto ele_id : ele_ids_near_sfc) for (auto ele_id : ele_ids_near_sfc)
{ {
auto* e = _mesh.getElement(ele_id); auto* e = mesh.getElement(ele_id);
// skip internal elements // skip internal elements
if (!e->isBoundaryElement()) if (!e->isBoundaryElement())
{ {
......
...@@ -45,9 +45,6 @@ public: ...@@ -45,9 +45,6 @@ public:
/// destructor /// destructor
virtual ~BoundaryElementsOnSurface(); virtual ~BoundaryElementsOnSurface();
/// return the mesh object
MeshLib::Mesh const& getMesh() const {return _mesh;}
/** /**
* Deploying this method the user can get access to the underlying * Deploying this method the user can get access to the underlying
* GeoLib::Surface. * GeoLib::Surface.
...@@ -61,7 +58,6 @@ public: ...@@ -61,7 +58,6 @@ public:
std::vector<MeshLib::Element*> const& getBoundaryElements() const {return _boundary_elements;} std::vector<MeshLib::Element*> const& getBoundaryElements() const {return _boundary_elements;}
private: private:
MeshLib::Mesh const& _mesh;
GeoLib::Surface const& _sfc; GeoLib::Surface const& _sfc;
std::vector<MeshLib::Element*> _boundary_elements; std::vector<MeshLib::Element*> _boundary_elements;
}; };
......
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