From 02e0b3409a3b93d928865d7af887f4699d30816e Mon Sep 17 00:00:00 2001 From: cignoni Date: Fri, 18 Jun 2010 14:31:58 +0000 Subject: [PATCH] removed a meaningless import of an uninitailzed var. --- vcg/complex/trimesh/inertia.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/complex/trimesh/inertia.h b/vcg/complex/trimesh/inertia.h index 01c21615..d4841bef 100644 --- a/vcg/complex/trimesh/inertia.h +++ b/vcg/complex/trimesh/inertia.h @@ -298,7 +298,7 @@ void InertiaTensorEigen(Matrix44 &EV, Point4 &ev ) Matrix44 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);