mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-31 09:05:14 +01:00
Code cleanup
This commit is contained in:
parent
d1b0e2ef73
commit
8c6f70d837
@ -41,6 +41,7 @@ Defense.
|
||||
|
||||
*/
|
||||
|
||||
#include "ellipsoid.h"
|
||||
#include "albersequal.h"
|
||||
|
||||
|
||||
|
@ -1,9 +1,10 @@
|
||||
#ifndef ALBERSEQUAL_H
|
||||
#define ALBERSEQUAL_H
|
||||
|
||||
#include "ellipsoid.h"
|
||||
#include "ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
||||
class AlbersEqual : public CT
|
||||
{
|
||||
public:
|
||||
|
@ -1,3 +1,5 @@
|
||||
#include <cmath>
|
||||
#include "ellipsoid.h"
|
||||
#include "lambertazimuthal.h"
|
||||
|
||||
#define sin2(x) (sin(x) * sin(x))
|
||||
|
@ -1,9 +1,10 @@
|
||||
#ifndef LAMBERTAZIMUTHAL_H
|
||||
#define LAMBERTAZIMUTHAL_H
|
||||
|
||||
#include "ellipsoid.h"
|
||||
#include "ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
||||
class LambertAzimuthal : public CT
|
||||
{
|
||||
public:
|
||||
|
@ -42,6 +42,7 @@ Defense.
|
||||
*/
|
||||
|
||||
#include <cmath>
|
||||
#include "ellipsoid.h"
|
||||
#include "lambertconic.h"
|
||||
|
||||
#ifndef M_PI_2
|
||||
|
@ -1,9 +1,10 @@
|
||||
#ifndef LAMBERTCONIC_H
|
||||
#define LAMBERTCONIC_H
|
||||
|
||||
#include "ellipsoid.h"
|
||||
#include "ct.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
||||
class LambertConic1 : public CT
|
||||
{
|
||||
public:
|
||||
|
@ -2,7 +2,8 @@
|
||||
#define TRANSVERSEMERCATOR_H
|
||||
|
||||
#include "ct.h"
|
||||
#include "ellipsoid.h"
|
||||
|
||||
class Ellipsoid;
|
||||
|
||||
class TransverseMercator : public CT
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user