Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members Related Pages Search
graphevent.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef GRAPHEVENT_H
00019 #define GRAPHEVENT_H
00020
00025 class GraphEvent
00026 {
00027 public:
00028 GraphEvent(double,double,double,double,double,double);
00029 double xMin() const;
00030 double xMax() const;
00031 double xScale() const;
00032 double yMin() const;
00033 double yMax() const;
00034 double yScale() const;
00035 double aScale() const;
00036 double rScale() const;
00037
00038 private:
00039 double _xMin,_xMax,_xScale,_yMin,_yMax,_yScale;
00040 };
00041
00042 #endif
|