aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/doc/examples/BVH_Example.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unsupported/doc/examples/BVH_Example.cpp')
-rw-r--r--unsupported/doc/examples/BVH_Example.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/doc/examples/BVH_Example.cpp b/unsupported/doc/examples/BVH_Example.cpp
index d135fd990..9e9959a32 100644
--- a/unsupported/doc/examples/BVH_Example.cpp
+++ b/unsupported/doc/examples/BVH_Example.cpp
@@ -5,7 +5,7 @@
using namespace Eigen;
typedef AlignedBox<double, 2> Box2d;
-Box2d ei_bounding_box(const Vector2d &v) { return Box2d(v, v); } //compute the bounding box of a single point
+Box2d internal::bounding_box(const Vector2d &v) { return Box2d(v, v); } //compute the bounding box of a single point
struct PointPointMinimizer //how to compute squared distances between points and rectangles
{