Index: trunk/psLib/src/astro/psCoord.h
===================================================================
--- trunk/psLib/src/astro/psCoord.h	(revision 1426)
+++ trunk/psLib/src/astro/psCoord.h	(revision 1440)
@@ -11,6 +11,6 @@
 *  @author George Gusciora, MHPCC
 *
-*  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-08-09 22:44:25 $
+*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-09 23:34:57 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -72,6 +72,6 @@
 typedef struct
 {
-    psDPolynomial2D *x;         ///< 2D polynomial transform of X coordinates
-    psDPolynomial2D *y;         ///< 2D polynomial transform of Y coordinates
+    psDPolynomial2D* x;         ///< 2D polynomial transform of X coordinates
+    psDPolynomial2D* y;         ///< 2D polynomial transform of Y coordinates
 }
 psPlaneTransform;
@@ -91,6 +91,6 @@
 typedef struct
 {
-    psDPolynomial4D *x;         ///< 4D polynomial transform of X coordinates
-    psDPolynomial4D *y;         ///< 4D polynomial transform of Y coordinates
+    psDPolynomial4D* x;         ///< 4D polynomial transform of X coordinates
+    psDPolynomial4D* y;         ///< 4D polynomial transform of Y coordinates
 }
 psPlaneDistort;
@@ -171,7 +171,7 @@
  *
  */
-psPlane *psPlaneTransformApply(psPlane * out,   ///< a psPlane to recycle.  If NULL, a new one is generated.
-                               const psPlaneTransform * transform,      ///< the transform to apply
-                               const psPlane * coords   ///< the coordinate to apply the transform above.
+psPlane* psPlaneTransformApply(psPlane* out,   ///< a psPlane to recycle.  If NULL, a new one is generated.
+                               const psPlaneTransform* transform,      ///< the transform to apply
+                               const psPlane* coords   ///< the coordinate to apply the transform above.
                               );
 
@@ -179,7 +179,7 @@
  *
  */
-psPlane *psPlaneDistortApply(psPlane * out,     ///< a psPlane to recycle.  If NULL, a new one is generated.
-                             const psPlaneDistort * transform,  ///< the transform to apply
-                             const psPlane * coords,    ///< the coordinate to apply the transform above.
+psPlane* psPlaneDistortApply(psPlane* out,     ///< a psPlane to recycle.  If NULL, a new one is generated.
+                             const psPlaneDistort* transform,  ///< the transform to apply
+                             const psPlane* coords,    ///< the coordinate to apply the transform above.
                              float term3,       ///< third term -- maybe magnitude
                              float term4        ///< forth term -- maybe color
@@ -189,5 +189,5 @@
  *
  */
-psSphereTransform *psSphereTransformAlloc(double NPlat, ///< north pole latitude
+psSphereTransform* psSphereTransformAlloc(double NPlat, ///< north pole latitude
         double Xo,    ///< First PT of Ares lon
         double xo     ///< First PT of Ares equiv lon
@@ -197,28 +197,28 @@
  *
  */
-psSphere *psSphereTransformApply(psSphere * out,        ///< a psSphere to recycle.  If NULL, a new one is
+psSphere* psSphereTransformApply(psSphere* out,        ///< a psSphere to recycle.  If NULL, a new one is
                                  // generated.
-                                 const psSphereTransform * transform,   ///< the transform to apply
-                                 const psSphere * coord ///< the coordinate to apply the transform above.x
+                                 const psSphereTransform* transform,   ///< the transform to apply
+                                 const psSphere* coord ///< the coordinate to apply the transform above.x
                                 );
 
-psSphereTransform *psSphereTransformICRStoEcliptic(psTime time);
-
-psSphereTransform *psSphereTransformEcliptictoICRS(psTime time);
-
-psSphereTransform *psSphereTransformICRStoGalatic(void);
-
-psSphereTransform *psSphereTransformGalatictoICRS(void);
-
-psPlane *psProject(const psSphere * coord, const psProjection * projection);
-
-psSphere *psDeproject(const psPlane * coord, const psProjection * projection);
-
-psSphere *psSphereGetOffset(const psSphere * restrict position1,
-                            const psSphere * restrict position2,
+psSphereTransform* psSphereTransformICRStoEcliptic(psTime time);
+
+psSphereTransform* psSphereTransformEcliptictoICRS(psTime time);
+
+psSphereTransform* psSphereTransformICRStoGalatic(void);
+
+psSphereTransform* psSphereTransformGalatictoICRS(void);
+
+psPlane* psProject(const psSphere* coord, const psProjection* projection);
+
+psSphere* psDeproject(const psPlane* coord, const psProjection* projection);
+
+psSphere* psSphereGetOffset(const psSphere* restrict position1,
+                            const psSphere* restrict position2,
                             psSphereOffsetMode mode, psSphereOffsetUnit unit);
 
-psSphere *psSphereSetOffset(const psSphere * restrict position,
-                            const psSphere * restrict offset,
+psSphere* psSphereSetOffset(const psSphere* restrict position,
+                            const psSphere* restrict offset,
                             psSphereOffsetMode mode, psSphereOffsetUnit unit);
 
