From 3d8bbcc87f75646c5db696ff7674ede6c05d5d4e Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 25 May 2006 09:35:55 +0000 Subject: [PATCH] added missing internal prototype to Sort function --- vcg/math/lin_algebra.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/vcg/math/lin_algebra.h b/vcg/math/lin_algebra.h index ccefc5eb..6c7703d1 100644 --- a/vcg/math/lin_algebra.h +++ b/vcg/math/lin_algebra.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.10 2006/05/17 09:26:35 cignoni +Added initial disclaimer + ****************************************************************************/ #ifndef __VCGLIB_LINALGEBRA_H #define __VCGLIB_LINALGEBRA_H @@ -169,7 +172,9 @@ namespace vcg * */ 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) ; + /*! * Given a matrix Am×n, this routine computes its singular value decomposition,