Replaced osgUtil::IntersectVisitor usage with osgUtil::InteresectionVisitor

This commit is contained in:
Robert Osfield
2018-04-20 14:32:34 +01:00
parent 8de8af6850
commit 709194c88c
15 changed files with 23 additions and 27 deletions

View File

@@ -21,7 +21,6 @@
#include <osg/BoundingSphere>
#include <osg/MatrixTransform>
#include <osgUtil/SceneView>
#include <osgUtil/IntersectVisitor>
#include <osgGA/GUIEventAdapter>
#include <osgGA/GUIActionAdapter>

View File

@@ -29,9 +29,9 @@
namespace osgUtil {
/** Deprecated */
class OSGUTIL_EXPORT Hit
{
/** Deprecated */
public:
Hit();
@@ -200,7 +200,7 @@ class OSGUTIL_EXPORT IntersectVisitor : public osg::NodeVisitor
osg::Vec3 _pseudoEyePoint;
};
/** Picking intersection visitor specialises the IntersectVistor to allow more convenient handling of mouse picking.*/
/** Deprecated Use LineSegmentIntersector/IntersectionVisitor or View::computeIntersections(..).*/
class OSGUTIL_EXPORT PickVisitor : public osgUtil::IntersectVisitor
{
public: