00001 //LabPlot : Plot2DSimple.h 00002 00003 #ifndef PLOT2DSIMPLE_H 00004 #define PLOT2DSIMPLE_H 00005 00006 #include <iostream> 00007 #include "Plot2D.h" 00008 00009 using namespace std; 00010 00012 class Plot2DSimple:public Plot2D { 00013 public: 00014 Plot2DSimple(Worksheet *p); 00015 QStringList Info(); 00016 void calculateXY(Point d,double *x, double *y, int w, int h); 00017 void drawFill(QPainter *p, int w, int h); 00018 void drawCurves(QPainter *p, int w, int h); 00019 }; 00020 00021 #endif // PLOT2DSIMPLE_H