diff --git a/vcg/math/matrix44.h b/vcg/math/matrix44.h index 2ea806d6..2dca8aca 100644 --- a/vcg/math/matrix44.h +++ b/vcg/math/matrix44.h @@ -85,7 +85,7 @@ public: */ Matrix44() {} ~Matrix44() {} - Matrix44(const Matrix44 &m); + //Matrix44(const Matrix44 &m); Matrix44(const T v[]); T &ElementAt(const int row, const int col); @@ -243,9 +243,9 @@ typedef Matrix44 Matrix44d; -template Matrix44::Matrix44(const Matrix44 &m) { - memcpy((T *)_a, (const T *)m._a, 16 * sizeof(T)); -} +//template Matrix44::Matrix44(const Matrix44 &m) { +// memcpy((T *)_a, (const T *)m._a, 16 * sizeof(T)); +//} template Matrix44::Matrix44(const T v[]) { memcpy((T *)_a, v, 16 * sizeof(T));