00001 #ifndef X3DTK_X3D_FILLPROPERTIES_H 00002 #define X3DTK_X3D_FILLPROPERTIES_H 00003 00004 #include "X3DTypes.h" 00005 #include "X3D_X3DAppearanceChildNode.h" 00006 00007 namespace X3DTK { 00008 namespace X3D { 00009 00018 class FillProperties : public X3DAppearanceChildNode 00019 { 00020 public: 00022 FillProperties(); 00024 virtual ~FillProperties(); 00025 00027 void setFillStyle(const SFString &fillStyle); 00029 void setHatchStyle(const SFInt32 &hatchStyle); 00031 void setHatchColor(const SFColor &hatchColor); 00032 00034 inline const SFString &getFillStyle() const {return _fillStyle;}; 00036 inline const SFInt32 &getHatchStyle() const {return _hatchStyle;}; 00038 inline const SFColor &getHatchColor() const {return _hatchColor;}; 00039 00040 private: 00042 SFString _fillStyle; 00044 SFInt32 _hatchStyle; 00046 SFColor _hatchColor; 00047 }; 00048 00049 } 00050 } 00051 00052 #endif