Main Page | Namespace List | Class Hierarchy | Class List | File List | Class Members | File Members

Point3D.h

Go to the documentation of this file.
00001 //LabPlot : Point3D.h
00002 
00003 #ifndef POINT3D_H
00004 #define POINT3D_H
00005 
00006 class Point3D
00007 {
00008 public:
00009         Point3D( double a=0, double b=0, double c=0);
00010         void setPoint( double, double, double);
00011         double X() { return x; }
00012         double Y() { return y; }
00013         double Z() { return z; }
00014         void setMasked(bool m ) { masked = m; }
00015         bool Masked() { return masked; }
00016 protected:
00017         double x,y,z;           
00018         bool masked;
00019 };
00020 
00021 #endif //POINT3D_H

Generated on Fri Aug 19 21:34:45 2005 for LabPlot by doxygen 1.3.6