Changeset 4336 in ntrip
- Timestamp:
- Jun 24, 2012, 11:04:46 AM (12 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/polarplot.cpp
r4334 r4336 17 17 18 18 #include <qpen.h> 19 #include <qwt_series_data.h>20 19 #include <qwt_symbol.h> 21 20 #include <qwt_polar_grid.h> 22 #include <qwt_scale_widget.h>23 21 24 22 #include "polarplot.h" -
trunk/BNC/src/rinex/polarplot.h
r4335 r4336 5 5 #include <qwt_polar_plot.h> 6 6 #include <qwt_polar_curve.h> 7 7 8 // 8 9 ////////////////////////////////////////////////////////////////////////////// … … 12 13 virtual ~t_polarCurve() {} 13 14 protected: 14 virtual void drawSymbols 15 16 17 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; 18 19 }; 19 20 … … 22 23 class t_polarPoint { 23 24 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) {} 29 27 double _az; 30 28 double _zen;
Note:
See TracChangeset
for help on using the changeset viewer.