Added shells for DOFTransform and PositionAttitudeTransform to the .osg
loader, still need to fill in the saving and loading of paramters. Went through the distribution remove old API usage.
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
|
||||
namespace osg{
|
||||
/** DOFTransform - encapsulates Multigen DOF behavior*/
|
||||
class SG_EXPORT DOFTransform : public MatrixTransform
|
||||
class SG_EXPORT DOFTransform : public Transform
|
||||
{
|
||||
public:
|
||||
/** constructor*/
|
||||
@@ -19,7 +19,7 @@ class SG_EXPORT DOFTransform : public MatrixTransform
|
||||
|
||||
/**copy constructor*/
|
||||
DOFTransform(const DOFTransform& dof, const CopyOp& copyop=CopyOp::SHALLOW_COPY):
|
||||
MatrixTransform(dof, copyop),
|
||||
Transform(dof, copyop),
|
||||
_minHPR(dof._minHPR),
|
||||
_maxHPR(dof._maxHPR),
|
||||
_currentHPR(dof._currentHPR),
|
||||
|
||||
Reference in New Issue
Block a user