manualPoint.h

Go to the documentation of this file.
00001 #ifndef manualPoint_h
00002 #define manualPoint_h
00003 
00004 class manualPoint
00005 {
00006 public:
00007         manualPoint();
00008         virtual ~manualPoint();
00009         void    SetPoint(double x,double y,double z);
00010         void    SetPointX(double x);
00011         void    SetPointY(double y);
00012         void    SetPointZ(double z);
00013         double  GetX();
00014         double  GetY();
00015         double  GetZ();
00016         virtual manualPoint * Clone();
00017         
00018 private:
00019         double  _x;
00020         double  _y;
00021         double  _z;
00022 }; 
00023 
00024 #endif // manualPoint_h

Generated on 18 Mar 2010 for creaMaracasVisu_lib by  doxygen 1.6.1