changed swap to math::Swap in Traspose Function
This commit is contained in:
parent
d231e04417
commit
9cb3c240e6
vcg/math
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$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
|
Revision 1.2 2004/07/13 06:48:26 cignoni
|
||||||
removed uppercase references in include
|
removed uppercase references in include
|
||||||
|
|
||||||
|
@ -226,9 +229,9 @@ public:
|
||||||
/// Funzione per eseguire la trasposta della matrice
|
/// Funzione per eseguire la trasposta della matrice
|
||||||
Matrix33 & Transpose()
|
Matrix33 & Transpose()
|
||||||
{
|
{
|
||||||
swap(a[1],a[3]);
|
math::Swap(a[1],a[3]);
|
||||||
swap(a[2],a[6]);
|
math::Swap(a[2],a[6]);
|
||||||
swap(a[5],a[7]);
|
math::Swap(a[5],a[7]);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue