From 889d2cb16d4456ff3dfd868cce132e86726b89f3 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Tue, 16 Jun 2015 12:45:20 +0200 Subject: [PATCH] [GL] OctTree: Points are already outside if they lie on the upper bound. --- GeoLib/OctTree-impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GeoLib/OctTree-impl.h b/GeoLib/OctTree-impl.h index 0b2f3fe828f..1387933378e 100644 --- a/GeoLib/OctTree-impl.h +++ b/GeoLib/OctTree-impl.h @@ -268,7 +268,7 @@ bool OctTree<POINT, MAX_POINTS>::isOutside(POINT * pnt) const { if ((*pnt)[0] < _ll[0] || (*pnt)[1] < _ll[1] || (*pnt)[2] < _ll[2]) return true; - if ((*pnt)[0] > _ur[0] || (*pnt)[1] > _ur[1] || (*pnt)[2] > _ur[2]) + if ((*pnt)[0] >= _ur[0] || (*pnt)[1] >= _ur[1] || (*pnt)[2] >= _ur[2]) return true; return false; } -- GitLab