Changeset 5879 in ntrip for trunk/BNC/src/map
- Timestamp:
- Aug 8, 2014, 12:58:03 PM (10 years ago)
- Location:
- trunk/BNC/src/map
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/map/bncmapwin.cpp
r5323 r5879 164 164 // 165 165 //////////////////////////////////////////////////////////////////////////// 166 void bncMapWin::slotNewPosition(bncTime /* time */, double xx, double yy, double zz) { 167 double xyz[3]; 168 xyz[0] = xx; 169 xyz[1] = yy; 170 xyz[2] = zz; 166 void bncMapWin::slotNewPosition(bncTime /* time */, QVector<double> xx) { 171 167 double ell[3]; 172 xyz2ell(x yz, ell);168 xyz2ell(xx.data(), ell); 173 169 gotoLocation(ell[0]*180.0/M_PI, ell[1]*180.0/M_PI); 174 170 } -
trunk/BNC/src/map/bncmapwin.h
r5323 r5879 41 41 42 42 public slots: 43 void slotNewPosition(bncTime time, double xx, double yy, double zz);43 void slotNewPosition(bncTime time, QVector<double> xx); 44 44 45 45 private slots:
Note:
See TracChangeset
for help on using the changeset viewer.