Index: trunk/psLib/src/image/psImageManip.h
===================================================================
--- trunk/psLib/src/image/psImageManip.h	(revision 1226)
+++ trunk/psLib/src/image/psImageManip.h	(revision 1250)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-15 19:58:37 $
+ *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-21 23:39:10 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -19,4 +19,5 @@
 
 #include "psImage.h"
+#include "psImageStats.h"
 
 /// @addtogroup Image
@@ -104,4 +105,21 @@
 );
 
+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
+    float dx,
+    float dy,
+    float unexposedValue,
+    psImageInterpolateMode mode
+);
+
 /** Roll image by an integer number of pixels in either direction.
  * 
