Index: /trunk/psLib/src/image/psImage.c
===================================================================
--- /trunk/psLib/src/image/psImage.c	(revision 1633)
+++ /trunk/psLib/src/image/psImage.c	(revision 1634)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-23 22:36:03 $
+ *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-27 19:05:40 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -40,5 +40,7 @@
 /*****************************************************************************/
 
-psImage* psImageAlloc(unsigned int numCols, unsigned int numRows, const psElemType type)
+psImage* psImageAlloc(unsigned int numCols,
+                      unsigned int numRows,
+                      const psElemType type)
 {
     int area = 0;
@@ -122,5 +124,8 @@
 }
 
-psImage* psImageRecycle(psImage* old, unsigned int numCols, unsigned int numRows, const psElemType type)
+psImage* psImageRecycle(psImage* old,
+                        unsigned int numCols,
+                        unsigned int numRows,
+                        const psElemType type)
 {
     int elementSize = PSELEMTYPE_SIZEOF(type);  // element
@@ -215,6 +220,9 @@
 linear interpolation is performed on the image.
  *****************************************************************************/
-psF32 psImagePixelInterpolate(const psImage* input,
-                              float x, float y, psF32 unexposedValue, psImageInterpolateMode mode)
+psC64 psImagePixelInterpolate(const psImage* input,
+                              float x,
+                              float y,
+                              psC64 unexposedValue,
+                              psImageInterpolateMode mode)
 {
 
@@ -311,4 +319,5 @@
 PSIMAGE_PIXEL_INTERPOLATE_FLAT_COMPLEX(C32)
 PSIMAGE_PIXEL_INTERPOLATE_FLAT_COMPLEX(C64)
+
 #define PSIMAGE_PIXEL_INTERPOLATE_BILINEAR(TYPE) \
 inline psF64 p_psImagePixelInterpolateBILINEAR_##TYPE(const psImage* input, \
Index: /trunk/psLib/src/image/psImage.h
===================================================================
--- /trunk/psLib/src/image/psImage.h	(revision 1633)
+++ /trunk/psLib/src/image/psImage.h	(revision 1634)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-23 22:36:03 $
+ *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-27 19:05:40 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -113,9 +113,9 @@
  *                   given x,y doesn't coorespond to a valid image location
  */
-psF32 psImagePixelInterpolate(
+psC64 psImagePixelInterpolate(
     const psImage* input,              ///< input image for interpolation
     float x,                           ///< column location to derive value of
     float y,                           ///< row location ot derive value of
-    psF32 unexposedValue,              ///< return value if x,y location is not in image.
+    psC64 unexposedValue,              ///< return value if x,y location is not in image.
     psImageInterpolateMode mode        ///< interpolation mode
 );
Index: /trunk/psLib/src/mathtypes/psImage.c
===================================================================
--- /trunk/psLib/src/mathtypes/psImage.c	(revision 1633)
+++ /trunk/psLib/src/mathtypes/psImage.c	(revision 1634)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-23 22:36:03 $
+ *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-27 19:05:40 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -40,5 +40,7 @@
 /*****************************************************************************/
 
-psImage* psImageAlloc(unsigned int numCols, unsigned int numRows, const psElemType type)
+psImage* psImageAlloc(unsigned int numCols,
+                      unsigned int numRows,
+                      const psElemType type)
 {
     int area = 0;
@@ -122,5 +124,8 @@
 }
 
-psImage* psImageRecycle(psImage* old, unsigned int numCols, unsigned int numRows, const psElemType type)
+psImage* psImageRecycle(psImage* old,
+                        unsigned int numCols,
+                        unsigned int numRows,
+                        const psElemType type)
 {
     int elementSize = PSELEMTYPE_SIZEOF(type);  // element
@@ -215,6 +220,9 @@
 linear interpolation is performed on the image.
  *****************************************************************************/
-psF32 psImagePixelInterpolate(const psImage* input,
-                              float x, float y, psF32 unexposedValue, psImageInterpolateMode mode)
+psC64 psImagePixelInterpolate(const psImage* input,
+                              float x,
+                              float y,
+                              psC64 unexposedValue,
+                              psImageInterpolateMode mode)
 {
 
@@ -311,4 +319,5 @@
 PSIMAGE_PIXEL_INTERPOLATE_FLAT_COMPLEX(C32)
 PSIMAGE_PIXEL_INTERPOLATE_FLAT_COMPLEX(C64)
+
 #define PSIMAGE_PIXEL_INTERPOLATE_BILINEAR(TYPE) \
 inline psF64 p_psImagePixelInterpolateBILINEAR_##TYPE(const psImage* input, \
Index: /trunk/psLib/src/mathtypes/psImage.h
===================================================================
--- /trunk/psLib/src/mathtypes/psImage.h	(revision 1633)
+++ /trunk/psLib/src/mathtypes/psImage.h	(revision 1634)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-23 22:36:03 $
+ *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-27 19:05:40 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -113,9 +113,9 @@
  *                   given x,y doesn't coorespond to a valid image location
  */
-psF32 psImagePixelInterpolate(
+psC64 psImagePixelInterpolate(
     const psImage* input,              ///< input image for interpolation
     float x,                           ///< column location to derive value of
     float y,                           ///< row location ot derive value of
-    psF32 unexposedValue,              ///< return value if x,y location is not in image.
+    psC64 unexposedValue,              ///< return value if x,y location is not in image.
     psImageInterpolateMode mode        ///< interpolation mode
 );
