Index: /trunk/psLib/src/astro/psCoord.c
===================================================================
--- /trunk/psLib/src/astro/psCoord.c	(revision 10608)
+++ /trunk/psLib/src/astro/psCoord.c	(revision 10609)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.126 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-10-24 22:52:55 $
+*  @version $Revision: 1.127 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-12-10 17:29:29 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -349,5 +349,5 @@
 
 
-psPlane* p_psProject(
+psPlane* psProject(
     psPlane *outPlane,
     const psSphere* coord,
@@ -437,12 +437,5 @@
 }
 
-psPlane* psProject(
-    const psSphere* coord,
-    const psProjection* projection)
-{
-    return(p_psProject(NULL, coord, projection));
-}
-
-psSphere* p_psDeproject(
+psSphere* psDeproject(
     psSphere *outSphere,
     const psPlane* coord,
@@ -560,12 +553,4 @@
 }
 
-psSphere* psDeproject(
-    const psPlane* coord,
-    const psProjection* projection)
-{
-    return(p_psDeproject(NULL, coord, projection));
-}
-
-
 /*****************************************************************************
 multiplyDPoly2D(trans1, trans2): Takes two 2-D polynomials as input and
Index: /trunk/psLib/src/astro/psCoord.h
===================================================================
--- /trunk/psLib/src/astro/psCoord.h	(revision 10608)
+++ /trunk/psLib/src/astro/psCoord.h	(revision 10609)
@@ -11,6 +11,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.53 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-07-18 22:50:47 $
+ *  @version $Revision: 1.54 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-12-10 17:29:51 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -288,9 +288,4 @@
  */
 psPlane* psProject(
-    const psSphere* coord,             ///< coordinate to project
-    const psProjection* projection     ///< parameters of the projection
-);
-
-psPlane* p_psProject(
     psPlane *out,
     const psSphere* coord,             ///< coordinate to project
@@ -303,13 +298,4 @@
  */
 psSphere* psDeproject(
-    const psPlane* coord,              ///< coordinate to project
-    const psProjection* projection     ///< parameters of the projection
-);
-
-/** Private reverse projection of a linear coordinate to a spherical coordinate system
- *
- *  @return psPlane*    projected coordinate
- */
-psSphere* p_psDeproject(
     psSphere *outSphere,
     const psPlane* coord,              ///< coordinate to project
Index: /trunk/psLib/src/astro/psSphereOps.c
===================================================================
--- /trunk/psLib/src/astro/psSphereOps.c	(revision 10608)
+++ /trunk/psLib/src/astro/psSphereOps.c	(revision 10609)
@@ -8,6 +8,6 @@
  *  @author Dave Robbins, MHPCC
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-11-09 23:26:04 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-12-10 17:29:51 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -335,5 +335,5 @@
                                                PS_PROJ_TAN);
         // Perform projection onto tangent plane
-        psPlane* lin = psProject(position2, proj);
+        psPlane* lin = psProject(NULL, position2, proj);
         // Set return values
         tmp->r = lin->x;
@@ -417,5 +417,5 @@
                                                PS_PROJ_TAN);
         // Project tangent plane coord to spherical coord
-        tmp = psDeproject(lin, proj);
+        tmp = psDeproject(NULL, lin, proj);
         // Free data structures used
         psFree(proj);
