Changeset 1845
- Timestamp:
- Sep 21, 2004, 1:44:10 PM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 edited
-
dataManip/psMatrix.c (modified) (3 diffs)
-
dataManip/psMatrix.h (modified) (3 diffs)
-
math/psMatrix.c (modified) (3 diffs)
-
math/psMatrix.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psMatrix.c
r1775 r1845 21 21 * @author Ross Harman, MHPCC 22 22 * 23 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $24 * @date $Date: 2004-09- 10 02:52:02$23 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 24 * @date $Date: 2004-09-21 23:44:10 $ 25 25 * 26 26 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 477 477 } 478 478 479 psVector* psMatrixToVector(psVector* outVector, psImage* inImage)479 psVector* psMatrixToVector(psVector* outVector, const psImage* inImage) 480 480 { 481 481 int size = 0; … … 536 536 } 537 537 538 psImage* psVectorToMatrix(psImage* outImage, psVector* inVector)538 psImage* psVectorToMatrix(psImage* outImage, const psVector* inVector) 539 539 { 540 540 int size = 0; -
trunk/psLib/src/dataManip/psMatrix.h
r1464 r1845 22 22 * @author Ross Harman, MHPCC 23 23 * 24 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $25 * @date $Date: 2004-0 8-11 02:35:58$24 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 25 * @date $Date: 2004-09-21 23:44:10 $ 26 26 * 27 27 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 145 145 psVector* psMatrixToVector( 146 146 psVector* outVector, ///< Vector to return, or NULL. 147 psImage* inImage///< Image to convert.147 const psImage* inImage ///< Image to convert. 148 148 ); 149 149 … … 159 159 psImage* psVectorToMatrix( 160 160 psImage* outImage, ///< Matrix to return, or NULL. 161 psVector* inVector///< Vector to convert.161 const psVector* inVector ///< Vector to convert. 162 162 ); 163 163 -
trunk/psLib/src/math/psMatrix.c
r1775 r1845 21 21 * @author Ross Harman, MHPCC 22 22 * 23 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $24 * @date $Date: 2004-09- 10 02:52:02$23 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 24 * @date $Date: 2004-09-21 23:44:10 $ 25 25 * 26 26 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 477 477 } 478 478 479 psVector* psMatrixToVector(psVector* outVector, psImage* inImage)479 psVector* psMatrixToVector(psVector* outVector, const psImage* inImage) 480 480 { 481 481 int size = 0; … … 536 536 } 537 537 538 psImage* psVectorToMatrix(psImage* outImage, psVector* inVector)538 psImage* psVectorToMatrix(psImage* outImage, const psVector* inVector) 539 539 { 540 540 int size = 0; -
trunk/psLib/src/math/psMatrix.h
r1464 r1845 22 22 * @author Ross Harman, MHPCC 23 23 * 24 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $25 * @date $Date: 2004-0 8-11 02:35:58$24 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 25 * @date $Date: 2004-09-21 23:44:10 $ 26 26 * 27 27 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 145 145 psVector* psMatrixToVector( 146 146 psVector* outVector, ///< Vector to return, or NULL. 147 psImage* inImage///< Image to convert.147 const psImage* inImage ///< Image to convert. 148 148 ); 149 149 … … 159 159 psImage* psVectorToMatrix( 160 160 psImage* outImage, ///< Matrix to return, or NULL. 161 psVector* inVector///< Vector to convert.161 const psVector* inVector ///< Vector to convert. 162 162 ); 163 163
Note:
See TracChangeset
for help on using the changeset viewer.
