00001 #ifndef COIN_SOTEXTURE3TRANSFORM_H
00002 #define COIN_SOTEXTURE3TRANSFORM_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include <Inventor/nodes/SoSubNode.h>
00028 #include <Inventor/fields/SoSFVec3f.h>
00029 #include <Inventor/fields/SoSFFloat.h>
00030 #include <Inventor/fields/SoSFRotation.h>
00031
00032 class SbMatrix;
00033
00034
00035 class COIN_DLL_API SoTexture3Transform : public SoNode {
00036 typedef SoNode inherited;
00037
00038 SO_NODE_HEADER(SoTexture3Transform);
00039
00040 public:
00041 static void initClass(void);
00042 SoTexture3Transform(void);
00043
00044 SoSFVec3f translation;
00045 SoSFRotation rotation;
00046 SoSFVec3f scaleFactor;
00047 SoSFRotation scaleOrientation;
00048 SoSFVec3f center;
00049
00050 virtual void doAction(SoAction * action);
00051 virtual void callback(SoCallbackAction * action);
00052 virtual void GLRender(SoGLRenderAction * action);
00053 virtual void getMatrix(SoGetMatrixAction * action);
00054 virtual void pick(SoPickAction * action);
00055
00056 protected:
00057 virtual ~SoTexture3Transform();
00058 };
00059
00060 #endif // !COIN_SOTEXTURE3TRANSFORM_H