2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +08:00
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
2003-01-22 00:45:36 +08:00
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2003-01-22 00:45:36 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-01-22 00:45:36 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2012-03-22 01:36:20 +08:00
|
|
|
//C++ header
|
2001-11-14 22:10:12 +08:00
|
|
|
|
|
|
|
#ifndef OSGUTIL_TRANSFORMCALLBACK
|
|
|
|
#define OSGUTIL_TRANSFORMCALLBACK 1
|
|
|
|
|
|
|
|
#include <osg/Node>
|
|
|
|
#include <osgUtil/Export>
|
|
|
|
|
|
|
|
namespace osgUtil
|
|
|
|
{
|
|
|
|
|
2005-11-09 23:11:22 +08:00
|
|
|
/** TransformCallback is now deprecated, use osg::AnimationPathCallback instead.*/
|
2001-11-14 22:10:12 +08:00
|
|
|
class OSGUTIL_EXPORT TransformCallback : public osg::NodeCallback
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
TransformCallback(const osg::Vec3& pivot,const osg::Vec3& axis,float angularVelocity);
|
|
|
|
|
2003-11-04 07:13:31 +08:00
|
|
|
void setPause(bool pause) { _pause = pause; }
|
|
|
|
|
|
|
|
/** implements the callback*/
|
|
|
|
virtual void operator()(osg::Node* node, osg::NodeVisitor* nv);
|
|
|
|
|
2001-11-14 22:10:12 +08:00
|
|
|
protected:
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2001-11-14 22:10:12 +08:00
|
|
|
float _angular_velocity;
|
|
|
|
osg::Vec3 _pivot;
|
|
|
|
osg::Vec3 _axis;
|
|
|
|
|
2010-12-23 04:11:05 +08:00
|
|
|
unsigned int _previousTraversalNumber;
|
2001-11-14 22:10:12 +08:00
|
|
|
double _previousTime;
|
2003-11-04 07:13:31 +08:00
|
|
|
bool _pause;
|
2001-11-14 22:10:12 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-11-14 22:10:12 +08:00
|
|
|
|
|
|
|
#endif
|