00001 #ifndef X3DTK_X3D_ORIENTATIONINTERPOLATOR 00002 #define X3DTK_X3D_ORIENTATIONINTERPOLATOR 00003 00004 #include "X3DTypes.h" 00005 #include "X3D_X3DInterpolatorNode.h" 00006 00007 namespace X3DTK { 00008 namespace X3D { 00009 00018 class OrientationInterpolator : public X3DInterpolatorNode 00019 { 00020 public: 00022 OrientationInterpolator(); 00024 virtual ~OrientationInterpolator(); 00025 00027 void setKeyValue(const MFRotation &keyValue); 00028 00030 inline const MFRotation &getKeyValue() const {return _keyValue;}; 00031 00032 private: 00034 MFRotation _keyValue; 00035 }; 00036 00037 } 00038 } 00039 00040 #endif