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

Point.h

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

Generated on Sat Oct 13 21:55:01 2007 for LabPlot by  doxygen 1.4.4