Index: trunk/psLib/src/astronomy/psCoord.c
===================================================================
--- trunk/psLib/src/astronomy/psCoord.c	(revision 1440)
+++ trunk/psLib/src/astronomy/psCoord.c	(revision 1463)
@@ -11,6 +11,6 @@
 *  @author George Gusciora, MHPCC
 *
-*  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-08-09 23:34:57 $
+*  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-10 23:59:41 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -31,6 +31,7 @@
 static float arg(float x, float y);
 
-// This is the only function in this file which I understand.
-psPlane* psPlaneTransformApply(psPlane* out, const psPlaneTransform* transform, const psPlane* coords)
+psPlane* psPlaneTransformApply(psPlane* out,
+                               const psPlaneTransform* transform,
+                               const psPlane* coords)
 {
     if (out == NULL) {
@@ -50,5 +51,7 @@
 psPlane* psPlaneDistortApply(psPlane* out,
                              const psPlaneDistort* transform,
-                             const psPlane* coords, float term3, float term4)
+                             const psPlane* coords,
+                             float term3,
+                             float term4)
 {
     if (out == NULL) {
@@ -59,10 +62,12 @@
              (transform->x->coeff[1][0][0][0] * coords->x) +
              (transform->x->coeff[0][1][0][0] * coords->y) +
-             (transform->x->coeff[0][0][1][0] * term3) + (transform->x->coeff[0][0][0][1] * term4);
+             (transform->x->coeff[0][0][1][0] * term3) +
+             (transform->x->coeff[0][0][0][1] * term4);
 
     out->y = transform->y->coeff[0][0][0][0] +
              (transform->y->coeff[1][0][0][0] * coords->x) +
              (transform->y->coeff[0][1][0][0] * coords->y) +
-             (transform->y->coeff[0][0][1][0] * term3) + (transform->y->coeff[0][0][0][1] * term4);
+             (transform->y->coeff[0][0][1][0] * term3) +
+             (transform->y->coeff[0][0][0][1] * term4);
 
     return (out);
