From 44b9b56c429d0b03f2c9d168665950e105b3e059 Mon Sep 17 00:00:00 2001 From: cignoni Date: Tue, 9 Oct 2012 08:51:15 +0000 Subject: [PATCH] Updated to reflect the naming changes in updateNormals --- vcg/complex/algorithms/update/position.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vcg/complex/algorithms/update/position.h b/vcg/complex/algorithms/update/position.h index 489f50b4..a91632ff 100644 --- a/vcg/complex/algorithms/update/position.h +++ b/vcg/complex/algorithms/update/position.h @@ -65,10 +65,10 @@ static void Matrix(ComputeMeshType &m, const Matrix44 &M, bool updat if(update_also_normals){ if(HasPerVertexNormal(m)){ - UpdateNormals::PerVertexMatrix(m,M); + UpdateNormal::PerVertexMatrix(m,M); } if(HasPerFaceNormal(m)){ - UpdateNormals::PerFaceMatrix(m,M); + UpdateNormal::PerFaceMatrix(m,M); } } }