Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members Related Pages Search
glgraphevent.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef GLGRAPHEVENT_H
00019 #define GLGRAPHEVENT_H
00020
00025 class GLGraphEvent
00026 {
00027 public:
00028 GLGraphEvent(float xRot, float zRot){this->xRot = xRot; this->zRot = zRot;}
00029 GLGraphEvent(float xMin, float xMax,float yMin,float yMax,float zMin,float zMax){_xMin = xMin; _xMax = xMax; _yMin = yMin; _yMax = yMax; _zMin = zMin; _zMax = zMax;}
00030 ~GLGraphEvent(){}
00031 float polarEye() const {return xRot;}
00032 float azimuthalEye() const {return zRot;}
00033 float xMin() const {return _xMin;}
00034 float xMax() const {return _xMax;}
00035 float yMin() const {return _yMin;}
00036 float yMax() const {return _yMax;}
00037 float zMin() const {return _zMin;}
00038 float zMax() const {return _zMax;}
00039
00040 private:
00041 float xRot, zRot, _xMin, _xMax, _yMin, _yMax, _zMin, _zMax;
00042 };
00043
00044 #endif //GLGRAPHEVENT_H
|