removed a meaningless import of an uninitailzed var.

This commit is contained in:
Paolo Cignoni 2010-06-18 14:31:58 +00:00
parent 830fb74a0f
commit 02e0b3409a
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ void InertiaTensorEigen(Matrix44<ScalarType> &EV, Point4<ScalarType> &ev )
Matrix44<ScalarType> it;
InertiaTensor(it);
Matrix44d EVd,ITd;ITd.Import(it);
Point4d evd; evd.Import(ev);
Point4d evd;
int n;
Jacobi(ITd,evd,EVd,n);
EV.Import(EVd);