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


Ignore:
Timestamp:
Jun 24, 2012, 11:04:46 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4335 r4336  
    55#include <qwt_polar_plot.h>
    66#include <qwt_polar_curve.h>
     7
    78//
    89//////////////////////////////////////////////////////////////////////////////
     
    1213  virtual ~t_polarCurve() {}
    1314 protected:
    14    virtual void drawSymbols (QPainter* painter, const QwtSymbol& symbol,
    15                              const QwtScaleMap& azimuthMap,
    16                              const QwtScaleMap& radialMap,
    17                              const QPointF& pole, int from, int to) const;
     15   virtual void drawSymbols(QPainter* painter, const QwtSymbol& symbol,
     16                            const QwtScaleMap& azimuthMap,
     17                            const QwtScaleMap& radialMap,
     18                            const QPointF& pole, int from, int to) const;
    1819};
    1920
     
    2223class t_polarPoint {
    2324 public:
    24   t_polarPoint(double az, double zen, double value) {
    25     _az    = az;
    26     _zen   = zen;
    27     _value = value;
    28   }
     25  t_polarPoint(double az, double zen, double value) :
     26               _az(az), _zen(zen), _value(value) {}
    2927  double _az;
    3028  double _zen;
Note: See TracChangeset for help on using the changeset viewer.