Updated to reflect the naming changes in updateNormals

This commit is contained in:
Paolo Cignoni 2012-10-09 08:51:15 +00:00
parent 69000a6af7
commit 44b9b56c42
1 changed files with 2 additions and 2 deletions

View File

@ -65,10 +65,10 @@ static void Matrix(ComputeMeshType &m, const Matrix44<ScalarType> &M, bool updat
if(update_also_normals){
if(HasPerVertexNormal(m)){
UpdateNormals<ComputeMeshType>::PerVertexMatrix(m,M);
UpdateNormal<ComputeMeshType>::PerVertexMatrix(m,M);
}
if(HasPerFaceNormal(m)){
UpdateNormals<ComputeMeshType>::PerFaceMatrix(m,M);
UpdateNormal<ComputeMeshType>::PerFaceMatrix(m,M);
}
}
}