diff --git a/Applications/DataExplorer/DataView/DirectConditionGenerator.cpp b/Applications/DataExplorer/DataView/DirectConditionGenerator.cpp index ac0c39168a9148f545d90804f40075000c1a73f1..ec002fb6e7e14c415540792b9cc7d9d59a38a3ec 100644 --- a/Applications/DataExplorer/DataView/DirectConditionGenerator.cpp +++ b/Applications/DataExplorer/DataView/DirectConditionGenerator.cpp @@ -72,8 +72,8 @@ const std::vector< std::pair<size_t,double> >& DirectConditionGenerator::directW const MathLib::Vector3 dir(0,0,-1); MeshLib::Mesh* sfc_mesh (MeshLib::MeshSurfaceExtraction::getMeshSurface(mesh, dir, true)); - std::vector<double> node_area_vec; - MeshLib::MeshSurfaceExtraction::getSurfaceAreaForNodes(*sfc_mesh, node_area_vec); + std::vector<double> node_area_vec = + MeshLib::MeshSurfaceExtraction::getSurfaceAreaForNodes(*sfc_mesh); const std::vector<MeshLib::Node*> &surface_nodes (sfc_mesh->getNodes()); const size_t nNodes(sfc_mesh->getNNodes()); const double no_data (raster->getNoDataValue()); diff --git a/MeshLib/MeshSurfaceExtraction.cpp b/MeshLib/MeshSurfaceExtraction.cpp index 2c9c8e7d20013b3fc9135161b958ab1d5634831a..19a949c2f0572f040ff4d33b1d8162e4c8c5b417 100644 --- a/MeshLib/MeshSurfaceExtraction.cpp +++ b/MeshLib/MeshSurfaceExtraction.cpp @@ -28,12 +28,13 @@ namespace MeshLib { -void MeshSurfaceExtraction::getSurfaceAreaForNodes(const MeshLib::Mesh &mesh, std::vector<double> &node_area_vec) +std::vector<double> MeshSurfaceExtraction::getSurfaceAreaForNodes(const MeshLib::Mesh &mesh) { + std::vector<double> node_area_vec; if (mesh.getDimension() != 2) { ERR ("Error in MeshSurfaceExtraction::getSurfaceAreaForNodes() - Given mesh is no surface mesh (dimension != 2)."); - return; + return node_area_vec; } double total_area (0); @@ -41,7 +42,6 @@ void MeshSurfaceExtraction::getSurfaceAreaForNodes(const MeshLib::Mesh &mesh, st // for each node, a vector containing all the element idget every element const std::vector<MeshLib::Node*> &nodes = mesh.getNodes(); const std::size_t nNodes ( mesh.getNNodes() ); - node_area_vec.reserve(nNodes); for (std::size_t n=0; n<nNodes; ++n) { double node_area (0); @@ -62,6 +62,8 @@ void MeshSurfaceExtraction::getSurfaceAreaForNodes(const MeshLib::Mesh &mesh, st } INFO ("Total surface Area: %f", total_area); + + return node_area_vec; } MeshLib::Mesh* MeshSurfaceExtraction::getMeshSurface(const MeshLib::Mesh &mesh, const MathLib::Vector3 &dir, double angle, bool keepOriginalNodeIds) diff --git a/MeshLib/MeshSurfaceExtraction.h b/MeshLib/MeshSurfaceExtraction.h index c031c9516e10e8b402676bf85a6bae76e2852fb6..aeece1a653a70632c2a9bebaa55b84093f686e54 100644 --- a/MeshLib/MeshSurfaceExtraction.h +++ b/MeshLib/MeshSurfaceExtraction.h @@ -36,8 +36,8 @@ class Node; class MeshSurfaceExtraction { public: - /// Returns the area assigned to each node on a surface mesh. - static void getSurfaceAreaForNodes(const MeshLib::Mesh &mesh, std::vector<double> &node_area_vec); + /// Returns a vector of the areas assigned to each node on a surface mesh. + static std::vector<double> getSurfaceAreaForNodes(const MeshLib::Mesh &mesh); /// Returns the surface nodes of a layered mesh. static std::vector<GeoLib::PointWithID*> getSurfaceNodes(const MeshLib::Mesh &mesh, const MathLib::Vector3 &dir, double angle);