1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-31 09:05:14 +01:00

Code cleanup

This commit is contained in:
Martin Tůma 2018-02-26 19:13:57 +01:00
parent d1b0e2ef73
commit 8c6f70d837
7 changed files with 12 additions and 4 deletions

View File

@ -41,6 +41,7 @@ Defense.
*/
#include "ellipsoid.h"
#include "albersequal.h"

View File

@ -1,9 +1,10 @@
#ifndef ALBERSEQUAL_H
#define ALBERSEQUAL_H
#include "ellipsoid.h"
#include "ct.h"
class Ellipsoid;
class AlbersEqual : public CT
{
public:

View File

@ -1,3 +1,5 @@
#include <cmath>
#include "ellipsoid.h"
#include "lambertazimuthal.h"
#define sin2(x) (sin(x) * sin(x))

View File

@ -1,9 +1,10 @@
#ifndef LAMBERTAZIMUTHAL_H
#define LAMBERTAZIMUTHAL_H
#include "ellipsoid.h"
#include "ct.h"
class Ellipsoid;
class LambertAzimuthal : public CT
{
public:

View File

@ -42,6 +42,7 @@ Defense.
*/
#include <cmath>
#include "ellipsoid.h"
#include "lambertconic.h"
#ifndef M_PI_2

View File

@ -1,9 +1,10 @@
#ifndef LAMBERTCONIC_H
#define LAMBERTCONIC_H
#include "ellipsoid.h"
#include "ct.h"
class Ellipsoid;
class LambertConic1 : public CT
{
public:

View File

@ -2,7 +2,8 @@
#define TRANSVERSEMERCATOR_H
#include "ct.h"
#include "ellipsoid.h"
class Ellipsoid;
class TransverseMercator : public CT
{