removed one useless parameter from the FastFit function of the paso-doble smoothing function.

This commit is contained in:
Paolo Cignoni 2010-10-15 09:23:09 +00:00
parent 445dad8458
commit 628f22f3c9
1 changed files with 2 additions and 2 deletions

View File

@ -1210,7 +1210,7 @@ void FitMesh(MeshType &m,
static void FastFitMesh(MeshType &m,
SimpleTempData<typename MeshType::VertContainer, PDVertInfo> &TDV,
SimpleTempData<typename MeshType::FaceContainer, PDFaceInfo> &TDF,
//SimpleTempData<typename MeshType::FaceContainer, PDFaceInfo> &TDF,
bool OnlySelected=false)
{
//vcg::face::Pos<FaceType> ep;
@ -1289,7 +1289,7 @@ static void VertexCoordPasoDobleFast(MeshType &m, int NormalSmoothStep, typename
FaceNormalAngleThreshold(m,TDF,Sigma);
for(int j=0;j<FitStep;++j)
FastFitMesh(m,TDV,TDF,SmoothSelected);
FastFitMesh(m,TDV,SmoothSelected);
}
//! Laplacian smoothing with a reprojection on a target surface.