Index: trunk/psLib/src/astro/psCoord.c
===================================================================
--- trunk/psLib/src/astro/psCoord.c	(revision 4225)
+++ trunk/psLib/src/astro/psCoord.c	(revision 4286)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.71 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-06-13 20:16:22 $
+*  @version $Revision: 1.72 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-16 22:00:03 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -242,8 +242,23 @@
     PS_ASSERT_PTR_NON_NULL(transform->y, NULL);
     PS_ASSERT_PTR_NON_NULL(coords, NULL);
+    printf("psPlaneTransformApply(): (%f, %f) x:(%d, %d)\n",
+           coords->x, coords->y, transform->x->nX, transform->x->nY);
 
     if (out == NULL) {
+        printf("psPlaneTransformApply(): out is NULL\n");
         out = (psPlane* ) psAlloc(sizeof(psPlane));
     }
+    /*
+        out->x = psDPolynomial2DEval(
+                     transform->x,
+                     coords->x,
+                     coords->y
+                 );
+        out->y = psDPolynomial2DEval(
+                     transform->y,
+                     coords->x,
+                     coords->y
+                 );
+    */
     out->x = psDPolynomial2DEval(
                  transform->x,
@@ -251,4 +266,5 @@
                  coords->y
              );
+
     out->y = psDPolynomial2DEval(
                  transform->y,
@@ -257,4 +273,5 @@
              );
 
+    printf("psPlaneTransformApply(END)\n");
     return (out);
 }
