Go to the documentation of this file.00001
00018 #ifndef POLARPOINTSERIESDATA_H
00019 #define POLARPOINTSERIESDATA_H
00020 #ifndef Q_MOC_RUN
00021 #include <qwt_series_data.h>
00022 #endif
00023
00024 class PolarPointSeriesData : public QwtArraySeriesData<QwtPointPolar>
00025 {
00026 public:
00027 PolarPointSeriesData(QVector<QwtPointPolar> samples);
00028 PolarPointSeriesData(double angle[], double distance[], unsigned int size);
00029 void setSamples(QVector<QwtPointPolar> samples);
00030 void update(double angle[], double distance[], unsigned int size);
00031 QRectF boundingRect() const { return d_boundingRect; }
00032 protected:
00033
00034 };
00035
00036 #endif // POLARPOINTSERIESDATA_H