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

Point4D.h

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

Generated on Sun Aug 29 14:56:05 2004 for LabPlot by doxygen 1.3.6