From 90703f99ee5a56f033c86fca0efcead20ec3471c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 1 Aug 2013 17:38:34 +0000 Subject: [PATCH] Added missing initializer for _epsilon --- include/osgUtil/IntersectionVisitor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/osgUtil/IntersectionVisitor b/include/osgUtil/IntersectionVisitor index 4bfbb9a9f..28450bafe 100644 --- a/include/osgUtil/IntersectionVisitor +++ b/include/osgUtil/IntersectionVisitor @@ -53,7 +53,8 @@ class Intersector : public osg::Referenced Intersector(CoordinateFrame cf=MODEL): _coordinateFrame(cf), _intersectionLimit(NO_LIMIT), - _disabledCount(0) {} + _disabledCount(0), + _epsilon(1e-4) {} void setCoordinateFrame(CoordinateFrame cf) { _coordinateFrame = cf; }