From 9cb3c240e6e2ecd7153cf2053190addb100d741b Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Mon, 11 Apr 2005 14:11:22 +0000 Subject: [PATCH] changed swap to math::Swap in Traspose Function --- vcg/math/matrix33.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/vcg/math/matrix33.h b/vcg/math/matrix33.h index d12628f8..6aab29c5 100644 --- a/vcg/math/matrix33.h +++ b/vcg/math/matrix33.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.3 2004/10/18 15:03:02 fiorin +Updated interface: all Matrix classes have now the same interface + Revision 1.2 2004/07/13 06:48:26 cignoni removed uppercase references in include @@ -226,9 +229,9 @@ public: /// Funzione per eseguire la trasposta della matrice Matrix33 & Transpose() { - swap(a[1],a[3]); - swap(a[2],a[6]); - swap(a[5],a[7]); + math::Swap(a[1],a[3]); + math::Swap(a[2],a[6]); + math::Swap(a[5],a[7]); return *this; }