From 69b05cc335f101577b762fcaedefcc0549cd9f89 Mon Sep 17 00:00:00 2001 From: incredibleLeitman Date: Sun, 29 Nov 2020 03:16:29 +0100 Subject: [PATCH] commented not yet used functions -> remove if really not used --- Utility.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Utility.h b/Utility.h index 7d2ec37..f86385a 100644 --- a/Utility.h +++ b/Utility.h @@ -56,6 +56,7 @@ static float pDistance(float x, float y, float x1, float y1, float x2, float y2) //return sqrt(dx * dx + dy * dy); } +/* not used anymore... or yet static bool SortForMinXMaxY (const Point& a, const Point& b) { if (a.x() != b.x()) @@ -87,5 +88,5 @@ static std::pair getMinMaxX(std::vector& pts) std::sort(pts.begin(), pts.end(), SortForMinXMaxY); return std::make_pair(pts[0], pts[pts.size() - 1]); -} +}*/ #endif // UTILITY_H \ No newline at end of file