00001 #ifndef X3DTK_X3D_X3DTEXTURE2DNODE_H 00002 #define X3DTK_X3D_X3DTEXTURE2DNODE_H 00003 00004 #include "X3D_X3DTextureNode.h" 00005 00006 namespace X3DTK { 00007 namespace X3D { 00008 00017 class X3DTexture2DNode : public X3DTextureNode 00018 { 00019 public: 00021 X3DTexture2DNode(); 00023 virtual ~X3DTexture2DNode(); 00024 00026 void setRepeatS(const SFBool &repeatS); 00028 void setRepeatT(const SFBool &repeatT); 00029 00031 inline const SFBool &getRepeatS() {return _repeatS;}; 00033 inline const SFBool &getRepeatT() {return _repeatT;}; 00034 00035 private: 00036 SFBool _repeatS; 00037 SFBool _repeatT; 00038 }; 00039 00040 } 00041 } 00042 00043 #endif