added missing internal prototype to Sort function
This commit is contained in:
parent
47e62b3c6e
commit
3d8bbcc87f
|
@ -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) ;
|
||||||
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|
Loading…
Reference in New Issue