-
Notifications
You must be signed in to change notification settings - Fork 0
/
DgIcosaProj.h
33 lines (26 loc) · 1.03 KB
/
DgIcosaProj.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
////////////////////////////////////////////////////////////////////////////////
//
// DgIcosaProj.h: DgIcosaProj class definitions
//
// Version 6.1 - Kevin Sahr, 5/23/13
//
////////////////////////////////////////////////////////////////////////////////
#ifndef DGICOSA_PROJ_H
#define DGICOSA_PROJ_H
#include "DgConverter.h"
#include "Dg2WayConverter.h"
#include "DgGeoSphRF.h"
#include "DgProjTriRF.h"
using namespace std;
////////////////////////////////////////////////////////////////////////////////
class DgIcosaProj : public Dg2WayConverter {
protected:
DgIcosaProj (const DgConverter<DgGeoCoord, long double,
DgProjTriCoord, long double>& forward,
const DgConverter<DgProjTriCoord, long double,
DgGeoCoord, long double>& inverse)
: Dg2WayConverter (forward, inverse) {}
};
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#endif