Index: /trunk/psLib/src/dataManip/psMatrix.c
===================================================================
--- /trunk/psLib/src/dataManip/psMatrix.c	(revision 1844)
+++ /trunk/psLib/src/dataManip/psMatrix.c	(revision 1845)
@@ -21,6 +21,6 @@
  *  @author Ross Harman, MHPCC
  *   
- *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-10 02:52:02 $
+ *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-09-21 23:44:10 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -477,5 +477,5 @@
 }
 
-psVector* psMatrixToVector(psVector* outVector, psImage* inImage)
+psVector* psMatrixToVector(psVector* outVector, const psImage* inImage)
 {
     int size = 0;
@@ -536,5 +536,5 @@
 }
 
-psImage* psVectorToMatrix(psImage* outImage, psVector* inVector)
+psImage* psVectorToMatrix(psImage* outImage, const psVector* inVector)
 {
     int size = 0;
Index: /trunk/psLib/src/dataManip/psMatrix.h
===================================================================
--- /trunk/psLib/src/dataManip/psMatrix.h	(revision 1844)
+++ /trunk/psLib/src/dataManip/psMatrix.h	(revision 1845)
@@ -22,6 +22,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-11 02:35:58 $
+ *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-09-21 23:44:10 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -145,5 +145,5 @@
 psVector* psMatrixToVector(
     psVector* outVector,               ///< Vector to return, or NULL.
-    psImage* inImage                   ///< Image to convert.
+    const psImage* inImage             ///< Image to convert.
 );
 
@@ -159,5 +159,5 @@
 psImage* psVectorToMatrix(
     psImage* outImage,                 ///< Matrix to return, or NULL.
-    psVector* inVector                 ///< Vector to convert.
+    const psVector* inVector           ///< Vector to convert.
 );
 
Index: /trunk/psLib/src/math/psMatrix.c
===================================================================
--- /trunk/psLib/src/math/psMatrix.c	(revision 1844)
+++ /trunk/psLib/src/math/psMatrix.c	(revision 1845)
@@ -21,6 +21,6 @@
  *  @author Ross Harman, MHPCC
  *   
- *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-10 02:52:02 $
+ *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-09-21 23:44:10 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -477,5 +477,5 @@
 }
 
-psVector* psMatrixToVector(psVector* outVector, psImage* inImage)
+psVector* psMatrixToVector(psVector* outVector, const psImage* inImage)
 {
     int size = 0;
@@ -536,5 +536,5 @@
 }
 
-psImage* psVectorToMatrix(psImage* outImage, psVector* inVector)
+psImage* psVectorToMatrix(psImage* outImage, const psVector* inVector)
 {
     int size = 0;
Index: /trunk/psLib/src/math/psMatrix.h
===================================================================
--- /trunk/psLib/src/math/psMatrix.h	(revision 1844)
+++ /trunk/psLib/src/math/psMatrix.h	(revision 1845)
@@ -22,6 +22,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-11 02:35:58 $
+ *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-09-21 23:44:10 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -145,5 +145,5 @@
 psVector* psMatrixToVector(
     psVector* outVector,               ///< Vector to return, or NULL.
-    psImage* inImage                   ///< Image to convert.
+    const psImage* inImage             ///< Image to convert.
 );
 
@@ -159,5 +159,5 @@
 psImage* psVectorToMatrix(
     psImage* outImage,                 ///< Matrix to return, or NULL.
-    psVector* inVector                 ///< Vector to convert.
+    const psVector* inVector           ///< Vector to convert.
 );
 
