2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-06-25 05:57:13 +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-06-25 05:57:13 +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-06-25 05:57:13 +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-06-25 05:57:13 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSGUTIL_TRANSFORMATTRIBUTEFUNCTOR
|
|
|
|
#define OSGUTIL_TRANSFORMATTRIBUTEFUNCTOR 1
|
|
|
|
|
|
|
|
#include <osg/Drawable>
|
|
|
|
#include <osg/Notify>
|
|
|
|
|
|
|
|
#include <osgUtil/Export>
|
|
|
|
|
|
|
|
namespace osgUtil {
|
|
|
|
|
|
|
|
/** Functor for transforming a drawable's vertex and normal attributes by specified matrix.
|
|
|
|
* typically used for flattening transform down onto drawable leaves. */
|
|
|
|
class OSGUTIL_EXPORT TransformAttributeFunctor : public osg::Drawable::AttributeFunctor
|
|
|
|
{
|
|
|
|
public:
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2004-10-24 22:42:40 +08:00
|
|
|
/** Construct a functor to transform a drawable's vertex and normal attributes by specified matrix.*/
|
2003-06-25 05:57:13 +08:00
|
|
|
TransformAttributeFunctor(const osg::Matrix& m);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2003-06-25 05:57:13 +08:00
|
|
|
virtual ~TransformAttributeFunctor();
|
|
|
|
|
2004-10-24 22:42:40 +08:00
|
|
|
/** Do the work of transforming vertex and normal attributes. */
|
2003-06-25 05:57:13 +08:00
|
|
|
virtual void apply(osg::Drawable::AttributeType type,unsigned int count,osg::Vec3* begin);
|
2011-05-12 21:12:07 +08:00
|
|
|
virtual void apply(osg::Drawable::AttributeType type,unsigned int count,osg::Vec3d* begin);
|
2003-06-25 05:57:13 +08:00
|
|
|
|
|
|
|
osg::Matrix _m;
|
|
|
|
osg::Matrix _im;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|