Home

Download

Features

Screenshots

Handbook

Browse Source

Authors

SourceForge.net Logo
Hosted by SourceForge.net

OSI Certified


Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   Related Pages   Search  

graphevent.h

00001 /***************************************************************************
00002                           graphevent.h  -  description
00003                              -------------------
00004     begin                : Sat May 20 2002
00005     copyright            : (C) 2002 by Fungmeista
00006     email                : confederacy2@excite.com
00007  ***************************************************************************/
00008 
00009 /***************************************************************************
00010  *                                                                         *
00011  *   This program is free software; you can redistribute it and/or modify  *
00012  *   it under the terms of the GNU General Public License as published by  *
00013  *   the Free Software Foundation; either version 2 of the License, or     *
00014  *   (at your option) any later version.                                   *
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