00001 #ifndef X3DTK_X3D_CONTOURPOLYLINE2D 00002 #define X3DTK_X3D_CONTOURPOLYLINE2D 00003 00004 #include "X3DTypes.h" 00005 #include "X3D_X3DParametricGeometryNode.h" 00006 00007 namespace X3DTK { 00008 namespace X3D { 00009 00018 class ContourPolyline2D : public X3DParametricGeometryNode 00019 { 00020 public: 00022 ContourPolyline2D(); 00024 virtual ~ContourPolyline2D(); 00025 00027 void setPoint(const MFVec2f &point); 00028 00030 inline const MFVec2f &getPoint() const {return _point;}; 00031 00032 private: 00034 MFVec2f _point; 00035 }; 00036 00037 } 00038 } 00039 00040 #endif