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


Ignore:
Timestamp:
Jun 23, 2012, 4:51:25 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4321 r4322  
    2323class t_polarPoint : public QwtPointPolar {
    2424 public:
    25  t_polarPoint(double azimuth, double zenith) : QwtPointPolar(azimuth, zenith) {}
     25  t_polarPoint(double az, double zen, double value) : QwtPointPolar(az, zen) {
     26    _value = value;
     27  }
    2628  ~t_polarPoint() {}
    27   double zz; // the third coordinate
     29  double _value; // the third coordinate
    2830};
    2931
     
    4143  }
    4244 protected:
    43   size_t      _size;
     45  size_t _size;
    4446};
    4547
Note: See TracChangeset for help on using the changeset viewer.