aboutsummaryrefslogtreecommitdiff
path: root/src/projects.h
diff options
context:
space:
mode:
authorFrank Warmerdam <warmerdam@pobox.com>2000-03-21 14:44:20 +0000
committerFrank Warmerdam <warmerdam@pobox.com>2000-03-21 14:44:20 +0000
commite80ad92ee405333be12cf6a9367990b4beff753d (patch)
treec76ff22516f8e68d16915ddd85ffc964df2c084a /src/projects.h
parent659ba490528fffad34db301109e477e2788a3694 (diff)
downloadPROJ-e80ad92ee405333be12cf6a9367990b4beff753d.tar.gz
PROJ-e80ad92ee405333be12cf6a9367990b4beff753d.zip
changed UV to projUV
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@782 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src/projects.h')
-rw-r--r--src/projects.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/projects.h b/src/projects.h
index 7f4a30c3..da4a1149 100644
--- a/src/projects.h
+++ b/src/projects.h
@@ -38,12 +38,12 @@ extern double hypot(double, double);
#define DIR_CHAR '/'
#endif
-typedef struct { double u, v; } UV;
+typedef struct { double u, v; } projUV;
typedef struct { double r, i; } COMPLEX;
#ifndef PJ_LIB__
-#define XY UV
-#define LP UV
+#define XY projUV
+#define LP projUV
#else
typedef struct { double x, y; } XY;
typedef struct { double lam, phi; } LP;
@@ -213,7 +213,7 @@ void pj_dalloc(void *);
char *pj_strerrno(int);
/* Approximation structures and procedures */
typedef struct { /* Chebyshev or Power series structure */
- UV a, b; /* power series range for evaluation */
+ projUV a, b; /* power series range for evaluation */
/* or Chebyshev argument shift/scaling */
struct PW_COEF {/* row coefficient structure */
int m; /* number of c coefficients (=0 for none) */
@@ -222,14 +222,14 @@ typedef struct { /* Chebyshev or Power series structure */
int mu, mv; /* maximum cu and cv index (+1 for count) */
int power; /* != 0 if power series, else Chebyshev */
} Tseries;
-Tseries *mk_cheby(UV, UV, double, UV *, UV (*)(UV), int, int, int);
-UV bpseval(UV, Tseries *);
-UV bcheval(UV, Tseries *);
-UV biveval(UV, Tseries *);
+Tseries *mk_cheby(projUV, projUV, double, projUV *, projUV (*)(projUV), int, int, int);
+projUV bpseval(projUV, Tseries *);
+projUV bcheval(projUV, Tseries *);
+projUV biveval(projUV, Tseries *);
void *vector1(int, int);
void **vector2(int, int, int);
-int bchgen(UV, UV, int, int, UV **, UV(*)(UV));
-int bch2bps(UV, UV, UV **, int, int);
+int bchgen(projUV, projUV, int, int, projUV **, projUV(*)(projUV));
+int bch2bps(projUV, projUV, projUV **, int, int);
/* nadcon related protos */
LP nad_intr(LP, struct CTABLE *);
LP nad_cvt(LP, int, struct CTABLE *);