From Jan Peciva, RayIntersector implementation

This commit is contained in:
Robert Osfield
2013-10-03 08:45:57 +00:00
parent 69f2fb56b3
commit 83c396b13b
6 changed files with 525 additions and 15 deletions

View File

@@ -50,9 +50,9 @@ class Intersector : public osg::Referenced
LIMIT_NEAREST
};
Intersector(CoordinateFrame cf=MODEL):
Intersector(CoordinateFrame cf=MODEL, IntersectionLimit il=NO_LIMIT):
_coordinateFrame(cf),
_intersectionLimit(NO_LIMIT),
_intersectionLimit(il),
_disabledCount(0) {}