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(); 00022 00024 void setRepeatS(const SFBool &repeatS); 00026 void setRepeatT(const SFBool &repeatT); 00027 00029 inline const SFBool &getRepeatS() {return _repeatS;}; 00031 inline const SFBool &getRepeatT() {return _repeatT;}; 00032 00033 private: 00034 SFBool _repeatS; 00035 SFBool _repeatT; 00036 }; 00037 00038 } 00039 } 00040 00041 #endif