Changeset 4331 in ntrip for trunk/BNC/src/rinex/polarplot.h


Ignore:
Timestamp:
Jun 23, 2012, 7:47:04 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/polarplot.h

    r4329 r4331  
    2020//
    2121//////////////////////////////////////////////////////////////////////////////
    22 class t_polarPoint : public QwtPointPolar {
    23  public:
    24   t_polarPoint(double az, double zen, double value) : QwtPointPolar(az, zen) {
    25     _value = value;
    26   }
    27   ~t_polarPoint() {}
    28   double _value; // the third coordinate
    29 };
    30 
    31 //
    32 //////////////////////////////////////////////////////////////////////////////
    33 class t_polarData: public QwtSeriesData<t_polarPoint> {
     22class t_polarData: public QwtSeriesData<QwtPointPolar> {
    3423 public:
    3524  t_polarData(size_t size) {
    3625    _size = size;
    3726  }
    38   virtual t_polarPoint sample(size_t ii) const;
     27  virtual QwtPointPolar sample(size_t ii) const;
    3928  virtual size_t size() const {return _size;}
    4029  virtual QRectF boundingRect() const {
Note: See TracChangeset for help on using the changeset viewer.