Parent Directory
|
Revision Log
Create libsgp4.so shared lib; unified sgp4 code
| 1 | mocchiut | 1.1 | // |
| 2 | // coord.cpp | ||
| 3 | // | ||
| 4 | // Copyright (c) 2003 Michael F. Henry | ||
| 5 | // | ||
| 6 | #include "stdafx.h" | ||
| 7 | #include "coord.h" | ||
| 8 | #include "globals.h" | ||
| 9 | |||
| 10 | ////////////////////////////////////////////////////////////////////// | ||
| 11 | // cCoordGeo Class | ||
| 12 | ////////////////////////////////////////////////////////////////////// | ||
| 13 | |||
| 14 | cCoordGeo::cCoordGeo() | ||
| 15 | { | ||
| 16 | m_Lat = 0.0; | ||
| 17 | m_Lon = 0.0; | ||
| 18 | m_Alt = 0.0; | ||
| 19 | } | ||
| 20 | |||
| 21 | ////////////////////////////////////////////////////////////////////// | ||
| 22 | // cCoordTopo Class | ||
| 23 | ////////////////////////////////////////////////////////////////////// | ||
| 24 | |||
| 25 | cCoordTopo::cCoordTopo() | ||
| 26 | { | ||
| 27 | m_Az = 0.0; | ||
| 28 | m_El = 0.0; | ||
| 29 | m_Range = 0.0; | ||
| 30 | m_RangeRate = 0.0; | ||
| 31 | |||
| 32 | } | ||
| 33 | |||
| 34 | |||
| 35 |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |