aboutsummaryrefslogtreecommitdiff
path: root/src/biveval.c
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/biveval.c
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/biveval.c')
-rw-r--r--src/biveval.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/biveval.c b/src/biveval.c
index 3dcd7461..ba34e085 100644
--- a/src/biveval.c
+++ b/src/biveval.c
@@ -4,7 +4,7 @@ static const char SCCSID[]="@(#)biveval.c 4.4 93/06/12 GIE REL";
#endif
# include <projects.h>
# define NEAR_ONE 1.00001
- static UV
+ static projUV
w2, w;
static double /* basic bivariate Chebyshev evaluation */
ceval(C, n) struct PW_COEF *C; {
@@ -33,9 +33,9 @@ ceval(C, n) struct PW_COEF *C; {
} else
return (w.u * d - dd);
}
- UV /* bivariate Chebyshev polynomial entry point */
-bcheval(UV in, Tseries *T) {
- UV out;
+ projUV /* bivariate Chebyshev polynomial entry point */
+bcheval(projUV in, Tseries *T) {
+ projUV out;
/* scale to +-1 */
w.u = ( in.u + in.u - T->a.u ) * T->b.u;
w.v = ( in.v + in.v - T->a.v ) * T->b.v;
@@ -50,9 +50,9 @@ bcheval(UV in, Tseries *T) {
}
return out;
}
- UV /* bivariate power polynomial entry point */
-bpseval(UV in, Tseries *T) {
- UV out;
+ projUV /* bivariate power polynomial entry point */
+bpseval(projUV in, Tseries *T) {
+ projUV out;
double *c, row;
int i, m;
@@ -77,7 +77,7 @@ bpseval(UV in, Tseries *T) {
}
return out;
}
- UV /* general entry point selecting evaluation mode */
-biveval(UV in, Tseries *T) {
+ projUV /* general entry point selecting evaluation mode */
+biveval(projUV in, Tseries *T) {
return (T->power ? bpseval(in, T) : bcheval(in, T));
}