| 54 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ |
| 55 | |
| 56 | FGLocation::FGLocation(void) |
| 57 | : mECLoc(1.0, 0.0, 0.0), mCacheValid(false) |
| 58 | { |
| 59 | e2 = c = 0.0; |
| 60 | a = ec = ec2 = 1.0; |
| 61 | |
| 62 | mLon = mLat = mRadius = 0.0; |
| 63 | mGeodLat = GeodeticAltitude = 0.0; |
| 64 | |
| 65 | mTl2ec.InitMatrix(); |
| 66 | mTec2l.InitMatrix(); |
| 67 | } |
| 68 | |
| 69 | //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 70 |
nothing calls this directly
no test coverage detected