Index: /trunk/psLib/src/astro/psCoord.c
===================================================================
--- /trunk/psLib/src/astro/psCoord.c	(revision 5815)
+++ /trunk/psLib/src/astro/psCoord.c	(revision 5816)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.97 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-12-19 23:58:47 $
+*  @version $Revision: 1.98 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-12-20 05:20:50 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -206,12 +206,12 @@
 
 // XXX: Verify the order/nterms poly changes
-psPlaneTransform* psPlaneTransformAlloc(int n1, int n2)
-{
-    PS_ASSERT_INT_NONNEGATIVE(n1, NULL);
-    PS_ASSERT_INT_NONNEGATIVE(n2, NULL);
+psPlaneTransform* psPlaneTransformAlloc(int order1, int order2)
+{
+    PS_ASSERT_INT_NONNEGATIVE(order1, NULL);
+    PS_ASSERT_INT_NONNEGATIVE(order2, NULL);
 
     psPlaneTransform *pt = psAlloc(sizeof(psPlaneTransform));
-    pt->x = psPolynomial2DAlloc(n1, n2, PS_POLYNOMIAL_ORD);
-    pt->y = psPolynomial2DAlloc(n1, n2, PS_POLYNOMIAL_ORD);
+    pt->x = psPolynomial2DAlloc(order1, order2, PS_POLYNOMIAL_ORD);
+    pt->y = psPolynomial2DAlloc(order1, order2, PS_POLYNOMIAL_ORD);
 
     psMemSetDeallocator(pt, (psFreeFunc) planeTransformFree);
@@ -267,14 +267,14 @@
 
 // XXX: Verify the order/nterms poly changes
-psPlaneDistort* psPlaneDistortAlloc(int n1, int n2, int n3, int n4)
-{
-    PS_ASSERT_INT_NONNEGATIVE(n1, NULL);
-    PS_ASSERT_INT_NONNEGATIVE(n2, NULL);
-    PS_ASSERT_INT_NONNEGATIVE(n3, NULL);
-    PS_ASSERT_INT_NONNEGATIVE(n4, NULL);
+psPlaneDistort* psPlaneDistortAlloc(int order1, int order2, int order3, int order4)
+{
+    PS_ASSERT_INT_NONNEGATIVE(order1, NULL);
+    PS_ASSERT_INT_NONNEGATIVE(order2, NULL);
+    PS_ASSERT_INT_NONNEGATIVE(order3, NULL);
+    PS_ASSERT_INT_NONNEGATIVE(order4, NULL);
 
     psPlaneDistort *pt = psAlloc(sizeof(psPlaneDistort));
-    pt->x = psPolynomial4DAlloc(n1, n2, n3, n4, PS_POLYNOMIAL_ORD);
-    pt->y = psPolynomial4DAlloc(n1, n2, n3, n4, PS_POLYNOMIAL_ORD);
+    pt->x = psPolynomial4DAlloc(order1, order2, order3, order4, PS_POLYNOMIAL_ORD);
+    pt->y = psPolynomial4DAlloc(order1, order2, order3, order4, PS_POLYNOMIAL_ORD);
 
     psMemSetDeallocator(pt, (psFreeFunc) planeDistortFree);
