mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-03-14 02:57:45 +01:00
10 lines
171 B
C
10 lines
171 B
C
|
#ifndef LL_H
|
||
|
#define LL_H
|
||
|
|
||
|
#include <QPointF>
|
||
|
|
||
|
void ll2mercator(const QPointF &src, QPointF &dst);
|
||
|
qreal llDistance(const QPointF &p1, const QPointF &p2);
|
||
|
|
||
|
#endif // LL_H
|