added missing internal prototype to Sort function

This commit is contained in:
Paolo Cignoni 2006-05-25 09:35:55 +00:00
parent 47e62b3c6e
commit 3d8bbcc87f
1 changed files with 6 additions and 1 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $Log: not supported by cvs2svn $
Revision 1.10 2006/05/17 09:26:35 cignoni
Added initial disclaimer
****************************************************************************/ ****************************************************************************/
#ifndef __VCGLIB_LINALGEBRA_H #ifndef __VCGLIB_LINALGEBRA_H
#define __VCGLIB_LINALGEBRA_H #define __VCGLIB_LINALGEBRA_H
@ -169,6 +172,8 @@ namespace vcg
* *
*/ */
enum SortingStrategy {LeaveUnsorted=0, SortAscending=1, SortDescending=2}; enum SortingStrategy {LeaveUnsorted=0, SortAscending=1, SortDescending=2};
template< typename MATRIX_TYPE >
void Sort(MATRIX_TYPE &U, typename MATRIX_TYPE::ScalarType W[], MATRIX_TYPE &V, const SortingStrategy sorting) ;
/*! /*!