diff --git a/GeoLib/AABB.h b/GeoLib/AABB.h
index 5c4ba628d5be6e4811553083c9cdbde9fa84c495..80ef410144b1d2f2683f3154053da0903624f249 100644
--- a/GeoLib/AABB.h
+++ b/GeoLib/AABB.h
@@ -127,11 +127,14 @@ public:
      * check if point is in the axis aligned bounding box
      */
     template <typename T>
-    bool containsPoint(T const & pnt) const
+    bool containsPoint(T const & pnt, double eps) const
     {
-        if (pnt[0] < _min_pnt[0] || _max_pnt[0] <= pnt[0]) return false;
-        if (pnt[1] < _min_pnt[1] || _max_pnt[1] <= pnt[1]) return false;
-        if (pnt[2] < _min_pnt[2] || _max_pnt[2] <= pnt[2]) return false;
+        if (pnt[0] < _min_pnt[0] - eps || _max_pnt[0] + eps <= pnt[0])
+            return false;
+        if (pnt[1] < _min_pnt[1] - eps || _max_pnt[1] + eps <= pnt[1])
+            return false;
+        if (pnt[2] < _min_pnt[2] - eps || _max_pnt[2] + eps <= pnt[2])
+            return false;
         return true;
     }
 
@@ -166,7 +169,8 @@ public:
      */
     bool containsAABB(AABB const& other_aabb) const
     {
-        return containsPoint(other_aabb.getMinPoint()) && containsPoint(other_aabb.getMaxPoint());
+        return containsPoint(other_aabb.getMinPoint(), 0) &&
+               containsPoint(other_aabb.getMaxPoint(), 0);
     }
 
 protected:
diff --git a/GeoLib/Surface.cpp b/GeoLib/Surface.cpp
index cfe03c2be6541d2cc9865391d1868a9a82739972..b5857e44aa1d94382f234de728e9aae69b53c9ef 100644
--- a/GeoLib/Surface.cpp
+++ b/GeoLib/Surface.cpp
@@ -94,9 +94,10 @@ const Triangle* Surface::operator[](std::size_t i) const
     return _sfc_triangles[i];
 }
 
-bool Surface::isPntInBoundingVolume(MathLib::Point3d const& pnt) const
+bool Surface::isPntInBoundingVolume(MathLib::Point3d const& pnt,
+                                    double eps) const
 {
-    return _bounding_volume->containsPoint(pnt);
+    return _bounding_volume->containsPoint(pnt, eps);
 }
 
 bool Surface::isPntInSfc(MathLib::Point3d const& pnt, double eps) const
diff --git a/GeoLib/Surface.h b/GeoLib/Surface.h
index 97b6f6ec5fbbf0d9c01f5be6efb6d41f71feb081..d2c71f2934d4eb1cb8c4a278f78f49034af363a4 100644
--- a/GeoLib/Surface.h
+++ b/GeoLib/Surface.h
@@ -62,7 +62,7 @@ public:
     /**
      * is the given point in the bounding volume of the surface
      */
-    bool isPntInBoundingVolume(MathLib::Point3d const& pnt) const;
+    bool isPntInBoundingVolume(MathLib::Point3d const& pnt, double eps) const;
 
     /**
      * is the given point pnt located in the surface
diff --git a/MeshGeoToolsLib/MeshNodesAlongSurface.cpp b/MeshGeoToolsLib/MeshNodesAlongSurface.cpp
index ac59cc39decc1cf23788199b7b6aa84eb4f0bf2c..36f72fa3fd56b9f545d0e5261c0e0635012b1af6 100644
--- a/MeshGeoToolsLib/MeshNodesAlongSurface.cpp
+++ b/MeshGeoToolsLib/MeshNodesAlongSurface.cpp
@@ -35,7 +35,7 @@ MeshNodesAlongSurface::MeshNodesAlongSurface(MeshLib::Mesh const& mesh,
     // loop over all nodes
     for (std::size_t i = 0; i < n_nodes; i++) {
         auto* node = mesh_nodes[i];
-        if (!sfc.isPntInBoundingVolume(*node))
+        if (!sfc.isPntInBoundingVolume(*node, epsilon_radius))
             continue;
         if (sfc.isPntInSfc(*node, epsilon_radius)) {
             _msh_node_ids.push_back(node->getID());
diff --git a/MeshLib/MeshSearch/ElementSearch.cpp b/MeshLib/MeshSearch/ElementSearch.cpp
index 4a451342e2fcc7e448db1f5c9625705c1600cf10..cc3dc03e89bfb565ef0fe4af1dcd83361ca4ab55 100644
--- a/MeshLib/MeshSearch/ElementSearch.cpp
+++ b/MeshLib/MeshSearch/ElementSearch.cpp
@@ -59,7 +59,7 @@ std::size_t ElementSearch::searchByBoundingBox(
         [&aabb](MeshLib::Element* e) {
             std::size_t const nElemNodes (e->getNumberOfBaseNodes());
             for (std::size_t n=0; n < nElemNodes; ++n)
-                if (aabb.containsPoint(*e->getNode(n)))
+                if (aabb.containsPoint(*e->getNode(n), 0))
                     return true;    // any node of element is in aabb.
             return false;    // no nodes of element are in aabb.
         });
diff --git a/NumLib/Function/LinearInterpolationOnSurface.cpp b/NumLib/Function/LinearInterpolationOnSurface.cpp
index ad83a4d2424a096f7efa226b989b77481b893e48..4c8452fe200b4fd8e62804aa1e2a244d0c520492 100644
--- a/NumLib/Function/LinearInterpolationOnSurface.cpp
+++ b/NumLib/Function/LinearInterpolationOnSurface.cpp
@@ -42,7 +42,7 @@ LinearInterpolationOnSurface::LinearInterpolationOnSurface(
 
 double LinearInterpolationOnSurface::operator()(const MathLib::Point3d& pnt) const
 {
-    if (!_sfc.isPntInBoundingVolume(pnt))
+    if (!_sfc.isPntInBoundingVolume(pnt, 0))
         return _default_value;
     auto* tri = _sfc.findTriangle(pnt);
     if (tri == nullptr)
diff --git a/Tests/GeoLib/TestAABB.cpp b/Tests/GeoLib/TestAABB.cpp
index 31db275f6e220b1ff91872d6a37841a981b93972..a061c0e6c8a05cb22a5c7179d170fe2559f2b24b 100644
--- a/Tests/GeoLib/TestAABB.cpp
+++ b/Tests/GeoLib/TestAABB.cpp
@@ -284,9 +284,9 @@ TEST(GeoLib, AABBSinglePoint)
                 else if (k==0) p[2] = pnts.front()[2];
                 else p[2] = std::nextafter(pnts.front()[2], to_max);
                 if (i == 0 && j == 0 && k == 0)
-                    ASSERT_TRUE(aabb.containsPoint(p));
+                    ASSERT_TRUE(aabb.containsPoint(p, 0));
                 else
-                    ASSERT_FALSE(aabb.containsPoint(p));
+                    ASSERT_FALSE(aabb.containsPoint(p, 0));
             }
         }
     }