From f4196dfe6487460d032e05c72bd24a2b7373bcfc Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 17 Apr 2015 13:33:08 +0000 Subject: [PATCH] Added implementations for the libraryName and className for the AntiSquish node. git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14844 16af8721-9629-0410-8352-f15c8da7e697 --- include/osgManipulator/AntiSquish | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/osgManipulator/AntiSquish b/include/osgManipulator/AntiSquish index b036bf13a..d45b03273 100644 --- a/include/osgManipulator/AntiSquish +++ b/include/osgManipulator/AntiSquish @@ -39,6 +39,11 @@ class OSGMANIPULATOR_EXPORT AntiSquish: public osg::Transform virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast(obj)!=NULL; } + virtual const char* libraryName() const { return "osgManipulator"; } + + virtual const char* className() const { return "AntiSquish"; } + + void setPivot(const osg::Vec3d& pvt) { _pivot = pvt;