Changeset 5879 in ntrip for trunk/BNC/src/map/bncmapwin.cpp
- Timestamp:
- Aug 8, 2014, 12:58:03 PM (10 years ago)
- File:
-
- 1 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 }
Note:
See TracChangeset
for help on using the changeset viewer.