Updated to reflect the naming changes in updateNormals

This commit is contained in:
Paolo Cignoni 2012-10-08 09:06:50 +00:00
parent c059114300
commit b974b6987d
1 changed files with 2 additions and 2 deletions

View File

@ -948,7 +948,7 @@ static void FaceNormalLaplacianVF(MeshType &m)
for(fi=m.face.begin();fi!=m.face.end();++fi)
(*fi).N()=TDF[*fi].m;
tri::UpdateNormals<MeshType>::NormalizeFace(m);
tri::UpdateNormals<MeshType>::NormalizePerFace(m);
TDF.Stop();
}
@ -984,7 +984,7 @@ static void FaceNormalLaplacianFF(MeshType &m, int step=1, bool SmoothSelected=f
if(!SmoothSelected || (*fi).IsS())
(*fi).N()=TDF[*fi].m;
tri::UpdateNormals<MeshType>::NormalizeFace(m);
tri::UpdateNormals<MeshType>::NormalizePerFace(m);
}
}