From 77c0240737bccf44e103381858a3a2b8983a1a9b Mon Sep 17 00:00:00 2001 From: Paolo Cignoni Date: Sat, 22 Jul 2017 08:03:27 +0200 Subject: [PATCH] Stupid useless normalization inserted by error. --- vcg/complex/algorithms/update/normal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/complex/algorithms/update/normal.h b/vcg/complex/algorithms/update/normal.h index 990a16e6..cedd0434 100644 --- a/vcg/complex/algorithms/update/normal.h +++ b/vcg/complex/algorithms/update/normal.h @@ -168,7 +168,7 @@ static void PerFace(ComputeMeshType &m) RequirePerFaceNormal(m); for(FaceIterator f=m.face.begin();f!=m.face.end();++f) if( !(*f).IsD() ) - f->N() = TriangleNormal(*f).Normalize(); + f->N() = TriangleNormal(*f); }