00001 #ifndef X3DTK_X3D_POINTSET_H 00002 #define X3DTK_X3D_POINTSET_H 00003 00004 #include "X3DTypes.h" 00005 #include "X3D_X3DGeometryNode.h" 00006 00007 namespace X3DTK { 00008 namespace X3D { 00009 00010 class X3DColorNode; 00011 class X3DCoordinateNode; 00012 00021 class PointSet : public X3DGeometryNode 00022 { 00023 public: 00025 PointSet(); 00027 virtual ~PointSet(); 00028 00030 inline X3DColorNode *getColor() const {return _color;}; 00032 inline X3DCoordinateNode *getCoord() const {return _coord;}; 00033 00034 private: 00036 X3DColorNode *_color; 00038 X3DCoordinateNode *_coord; 00039 }; 00040 00041 } 00042 } 00043 00044 #endif