-
Notifications
You must be signed in to change notification settings - Fork 3
/
geom.hpp
47 lines (43 loc) · 1.3 KB
/
geom.hpp
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// geom.hpp
//
// This is a top-level include for the Geometry library of classes
// developed to support Radiative3D. Including this file gets you all
// of the following:
//
// o typedefs.hpp
// o geom_base.hpp
// o geom_r3.hpp
// o geom_s2.hpp
//
// NOTE: geom_r4.hpp is *not* included by this header, as so few
// modules actually need it. If the R4 namespace is needed, the
// module should additionally include geom_r4.hpp after geom.hpp.
//
//
#ifndef GEOM_H_
#define GEOM_H_
//
#include "geom_r3.hpp"
#include "geom_s2.hpp"
#include "geom_r4.hpp"
//
// No need to directly include "geom_base.hpp" since it is
// included indirectly via geom_r3.hpp and geom_s2.hpp.
//
//////
// *** TYPEDEFS:
//
namespace S2 {
typedef ThetaPhi S2Point; /* Deprecated */
typedef ThetaPhi_Set S2Set; /* Deprecated */
// Deprecation Note: I don't like the names of
// these typedefs, or even necessarily that they
// exist. I have removed them from the geom lib
// files themselves, and retain these only in
// this header to preserve application code
// already written, but that code SHOULD be
// re-written.
};
///
#endif //#ifndef GEOM_H_
//