Index: trunk/psLib/src/astro/psCoord.c
===================================================================
--- trunk/psLib/src/astro/psCoord.c	(revision 4286)
+++ trunk/psLib/src/astro/psCoord.c	(revision 4288)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.72 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-06-16 22:00:03 $
+*  @version $Revision: 1.73 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-16 22:32:57 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -242,6 +242,4 @@
     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) {
@@ -249,16 +247,5 @@
         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,
@@ -273,5 +260,4 @@
              );
 
-    printf("psPlaneTransformApply(END)\n");
     return (out);
 }
