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(); 00023 00025 void setFillStyle(const SFString &fillStyle); 00027 void setHatchStyle(const SFInt32 &hatchStyle); 00029 void setHatchColor(const SFColor &hatchColor); 00030 00032 inline const SFString &getFillStyle() const {return _fillStyle;}; 00034 inline const SFInt32 &getHatchStyle() const {return _hatchStyle;}; 00036 inline const SFColor &getHatchColor() const {return _hatchColor;}; 00037 00038 private: 00040 SFString _fillStyle; 00042 SFInt32 _hatchStyle; 00044 SFColor _hatchColor; 00045 }; 00046 00047 } 00048 } 00049 00050 #endif