00001 #ifndef X3DTK_X3D_TRIANGLESTRIPSET_H 00002 #define X3DTK_X3D_TRIANGLESTRIPSET_H 00003 00004 #include "X3DTypes.h" 00005 #include "X3D_X3DComposedGeometryNode.h" 00006 00007 namespace X3DTK { 00008 namespace X3D { 00009 00018 class TriangleStripSet : public X3DComposedGeometryNode 00019 { 00020 public: 00022 TriangleStripSet(); 00024 virtual ~TriangleStripSet(); 00025 00027 void setConvex(const SFBool &convex); 00029 void setCreaseAngle(const SFFloat &creaseAngle); 00031 void setStripCount(const MFInt32 &stripCount); 00032 00034 inline const SFBool &getConvex() const {return _convex;}; 00036 inline const SFFloat &getCreaseAngle() const {return _creaseAngle;}; 00038 inline const MFInt32 &getStripCount() const {return _stripCount;}; 00039 00040 private: 00042 SFBool _convex; 00044 SFFloat _creaseAngle; 00046 MFInt32 _stripCount; 00047 }; 00048 00049 } 00050 } 00051 00052 #endif