From 3c3272beb33eeb56516b60a2f16ac709cfc1637f Mon Sep 17 00:00:00 2001
From: Dmitrij Naumov <dmitrij@naumov.de>
Date: Tue, 30 Sep 2014 21:41:18 +0000
Subject: [PATCH] getSurfaceAreaForNodes() returns its result.

Also correct a description.
---
 .../DataExplorer/DataView/DirectConditionGenerator.cpp    | 4 ++--
 MeshLib/MeshSurfaceExtraction.cpp                         | 8 +++++---
 MeshLib/MeshSurfaceExtraction.h                           | 4 ++--
 3 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/Applications/DataExplorer/DataView/DirectConditionGenerator.cpp b/Applications/DataExplorer/DataView/DirectConditionGenerator.cpp
index ac0c39168a9..ec002fb6e7e 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 2c9c8e7d200..19a949c2f05 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 c031c9516e1..aeece1a653a 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);
-- 
GitLab