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


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

Legend:

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

    r4322 r4328  
    55#include <qwt_polar_plot.h>
    66#include <qwt_polar_curve.h>
     7#include <qwt_color_map.h>
     8
     9//
     10//////////////////////////////////////////////////////////////////////////////
     11class t_colorMap: public QwtLinearColorMap {
     12 public:
     13  t_colorMap() : QwtLinearColorMap(Qt::darkBlue, Qt::yellow) {
     14    addColorStop(0.05, Qt::blue);
     15    addColorStop(0.30, Qt::cyan);
     16    addColorStop(0.60, Qt::green);
     17    addColorStop(0.98, Qt::red);
     18  }
     19};
    720
    821//
     
    5669 private:
    5770  t_polarCurve* createCurve() const;
     71  t_colorMap*   _colorMap;
    5872};
    5973
Note: See TracChangeset for help on using the changeset viewer.