00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
#ifndef COIN_SOTEXTURECOORDINATEBINDING_H
00021
#define COIN_SOTEXTURECOORDINATEBINDING_H
00022
00023
#include <Inventor/nodes/SoSubNode.h>
00024
#include <Inventor/fields/SoSFEnum.h>
00025
#include <Inventor/elements/SoTextureCoordinateBindingElement.h>
00026
00027
00028 class COIN_DLL_API SoTextureCoordinateBinding :
public SoNode {
00029
typedef SoNode inherited;
00030
00031 SO_NODE_HEADER(SoTextureCoordinateBinding);
00032
00033
public:
00034
static void initClass(
void);
00035 SoTextureCoordinateBinding(
void);
00036
00037 enum Binding {
00038 PER_VERTEX = SoTextureCoordinateBindingElement::PER_VERTEX,
00039 PER_VERTEX_INDEXED = SoTextureCoordinateBindingElement::PER_VERTEX_INDEXED
00040 };
00041
00042
SoSFEnum value;
00043
00044
virtual void doAction(
SoAction * action);
00045
virtual void callback(
SoCallbackAction * action);
00046
virtual void GLRender(
SoGLRenderAction * action);
00047
virtual void pick(
SoPickAction * action);
00048
00049
protected:
00050
virtual ~SoTextureCoordinateBinding();
00051
00052
virtual SbBool readInstance(
SoInput * in,
unsigned short flags);
00053 };
00054
00055
#endif // !COIN_SOTEXTURECOORDINATEBINDING_H