Changeset 4324 in ntrip
- Timestamp:
- Jun 23, 2012, 5:10:07 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/polarplot.cpp
r4323 r4324 31 31 for (int ii = from; ii <= to; ii++) { 32 32 QwtSymbol ss(symbol); 33 t_polarData* polarData = (t_polarData*) data();33 const t_polarData* polarData = reinterpret_cast<const t_polarData*>(data()); 34 34 const t_polarPoint& point = polarData->sample(ii); 35 35 if (point._value == 1) { … … 58 58 59 59 double value = 0.0; 60 if (ii % 3== 0) {60 if (ii % 4 == 0) { 61 61 value = 1.0; 62 62 }
Note:
See TracChangeset
for help on using the changeset viewer.