Index: trunk/psLib/src/image/psImageManip.h
===================================================================
--- trunk/psLib/src/image/psImageManip.h	(revision 1426)
+++ trunk/psLib/src/image/psImageManip.h	(revision 1440)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 22:44:25 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 23:34:58 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -32,5 +32,5 @@
  *  @return int     The number of clipped pixels
  */
-int psImageClip(psImage * input,        ///< the image to clip
+int psImageClip(psImage* input,        ///< the image to clip
                 psF64 min,      ///< the minimum image value allowed
                 psF64 vmin,     ///< the value pixels < min are set to
@@ -48,5 +48,5 @@
  *  @return int     The number of clipped pixels
  */
-int psImageClipComplexRegion(psImage * input,   ///< the image to clip
+int psImageClipComplexRegion(psImage* input,   ///< the image to clip
                              psC64 min, ///< the minimum image value allowed
                              psC64 vmin,        ///< the value pixels < min are set to
@@ -62,5 +62,5 @@
  *  @return int     The number of clipped pixels
  */
-int psImageClipNaN(psImage * input,     ///< the image to clip
+int psImageClipNaN(psImage* input,     ///< the image to clip
                    psF64 value  ///< the value to set all NaN/Inf values to
                   );
@@ -77,6 +77,6 @@
  *  @return int         0 if success, non-zero if failed.
  */
-int psImageOverlaySection(psImage * image,      ///< target image
-                          const psImage * overlay,      ///< the overlay image
+int psImageOverlaySection(psImage* image,      ///< target image
+                          const psImage* overlay,      ///< the overlay image
                           int col0,     ///< the column to start overlay
                           int row0,     ///< the row to start overlay
@@ -94,21 +94,21 @@
  *  @return psImage    new image formed by rebinning input image.
  */
-psImage *psImageRebin(psImage * out,    ///< an psImage to recycle.  If NULL, a new image is created
-                      const psImage * in,       ///< input image
+psImage* psImageRebin(psImage* out,    ///< an psImage to recycle.  If NULL, a new image is created
+                      const psImage* in,       ///< input image
                       unsigned int scale,       ///< the scale to rebin for each dimension
-                      const psStats * stats     ///< the statistic to perform when rebinning.  Only one
+                      const psStats* stats     ///< the statistic to perform when rebinning.  Only one
                       // method should be set.
                      );
 
-psImage *psImageResample(psImage * out, ///< an psImage to recycle.  If NULL, a new image is created
-                         const psImage * in,    ///< input image
+psImage* psImageResample(psImage* out, ///< an psImage to recycle.  If NULL, a new image is created
+                         const psImage* in,    ///< input image
                          int scale, psImageInterpolateMode mode);
 
-psImage *psImageRotate(psImage * out,   ///< an psImage to recycle.  If NULL, a new image is created
-                       const psImage * in,      ///< input image
+psImage* psImageRotate(psImage* out,   ///< an psImage to recycle.  If NULL, a new image is created
+                       const psImage* in,      ///< input image
                        float angle, float unexposedValue, psImageInterpolateMode mode);
 
-psImage *psImageShift(psImage * out,    ///< an psImage to recycle.  If NULL, a new image is created
-                      const psImage * in,       ///< input image
+psImage* psImageShift(psImage* out,    ///< an psImage to recycle.  If NULL, a new image is created
+                      const psImage* in,       ///< input image
                       float dx, float dy, float unexposedValue, psImageInterpolateMode mode);
 
@@ -119,8 +119,8 @@
  *  defined for psU8, psS8, psS16, psF32, psF64, psC32, and psC64.
  *
- *  @return psImage*    the rolled version of the input image.
+ *  @return psImage* the rolled version of the input image.
  */
-psImage *psImageRoll(psImage * out,     ///< an psImage to recycle.  If NULL, a new image is created
-                     const psImage * in,        ///< input image
+psImage* psImageRoll(psImage* out,     ///< an psImage to recycle.  If NULL, a new image is created
+                     const psImage* in,        ///< input image
                      int dx,    ///< number of pixels to roll in the x-dimension
                      int dy     ///< number of pixels to roll in the y-dimension
