From Terry Welsh, fixed typo of getEnd()

This commit is contained in:
Robert Osfield
2008-05-07 13:49:32 +00:00
parent 4f881b9a09
commit 7c94ff2b6d

View File

@@ -77,7 +77,7 @@ class OSGUTIL_EXPORT LineSegmentIntersector : public Intersector
inline const osg::Vec3d& getStart() const { return _start; }
inline void setEnd(const osg::Vec3d& end) { _end = end; }
inline const osg::Vec3d& setEnd() const { return _end; }
inline const osg::Vec3d& getEnd() const { return _end; }
public: