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(); 00026 00028 inline X3DColorNode *getColor() const {return _color;}; 00030 inline X3DCoordinateNode *getCoord() const {return _coord;}; 00031 00032 private: 00034 X3DColorNode *_color; 00036 X3DCoordinateNode *_coord; 00037 }; 00038 00039 } 00040 } 00041 00042 #endif