00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef COIN_SOVRMLTEXTURECOORDINATE_H
00025 #define COIN_SOVRMLTEXTURECOORDINATE_H
00026
00027 #include <Inventor/nodes/SoSubNode.h>
00028 #include <Inventor/nodes/SoNode.h>
00029 #include <Inventor/fields/SoMFVec2f.h>
00030
00031 class COIN_DLL_API SoVRMLTextureCoordinate : public SoNode
00032 {
00033 typedef SoNode inherited;
00034 SO_NODE_HEADER(SoVRMLTextureCoordinate);
00035
00036 public:
00037 static void initClass(void);
00038 SoVRMLTextureCoordinate(void);
00039
00040 SoMFVec2f point;
00041
00042 virtual void doAction( SoAction * action );
00043 virtual void callback( SoCallbackAction * action );
00044 virtual void GLRender( SoGLRenderAction * action );
00045 virtual void pick( SoPickAction * action );
00046 virtual void getPrimitiveCount( SoGetPrimitiveCountAction * action );
00047
00048 protected:
00049 virtual ~SoVRMLTextureCoordinate();
00050
00051 };
00052
00053 #endif // ! COIN_SOVRMLTEXTURECOORDINATE_H