1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/common/greatcircle.h

21 lines
319 B
C
Raw Normal View History

#ifndef GREATCIRCLE_H
#define GREATCIRCLE_H
#include "coordinates.h"
2018-09-13 01:15:43 +02:00
class GreatCircle
{
2018-09-13 01:15:43 +02:00
public:
GreatCircle(const Coordinates &c1, const Coordinates &c2);
Coordinates pointAt(double f) const;
private:
2018-09-13 01:45:17 +02:00
double _xA, _xB, _yA, _yB;
2018-09-13 01:15:43 +02:00
double _d;
double _sinD;
2018-09-13 01:45:17 +02:00
double _sinLat1, _sinLat2;
2018-09-13 01:15:43 +02:00
};
#endif // GREATCIRCLE_H