From 072f17d85d25e8d01243174f95dd15e40b8c07d7 Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Mon, 25 Feb 2013 09:55:41 +0100
Subject: [PATCH] Substituting MathLib::checkDistance with MathLib::sqrDist and
 a comparison.

---
 GeoLib/Polyline.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/GeoLib/Polyline.cpp b/GeoLib/Polyline.cpp
index b2411ca0fe2..e11f865a709 100644
--- a/GeoLib/Polyline.cpp
+++ b/GeoLib/Polyline.cpp
@@ -413,6 +413,6 @@ bool pointsAreIdentical(const std::vector<Point*> &pnt_vec,
 {
 	if (i == j)
 		return true;
-	return MathLib::checkDistance( *pnt_vec[i], *pnt_vec[j], prox );
+	return MathLib::sqrDist(pnt_vec[i], pnt_vec[j]) < prox;
 }
 } // end namespace GeoLib
-- 
GitLab