From a6ab3f6ecbf97bcad37366ebe38eb4fe40a34eef Mon Sep 17 00:00:00 2001 From: Karsten Rink <karsten.rink@ufz.de> Date: Mon, 29 Sep 2014 10:19:49 +0200 Subject: [PATCH] find x --- MathLib/Vector3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MathLib/Vector3.h b/MathLib/Vector3.h index 1e90b44333a..270200b5ea5 100644 --- a/MathLib/Vector3.h +++ b/MathLib/Vector3.h @@ -118,7 +118,7 @@ public: /// Returns a normalized version of this vector TemplateVector3<double> normalizeVector() const { - TemplateVector3<double> norm_vec (_x[0], _x[1], _x[2]); + TemplateVector3<double> norm_vec (this->_x[0], this->_x[1], this->_x[2]); norm_vec.normalize(); return norm_vec; } -- GitLab