removed one useless parameter from the FastFit function of the paso-doble smoothing function.
This commit is contained in:
parent
445dad8458
commit
628f22f3c9
|
@ -1210,7 +1210,7 @@ void FitMesh(MeshType &m,
|
||||||
|
|
||||||
static void FastFitMesh(MeshType &m,
|
static void FastFitMesh(MeshType &m,
|
||||||
SimpleTempData<typename MeshType::VertContainer, PDVertInfo> &TDV,
|
SimpleTempData<typename MeshType::VertContainer, PDVertInfo> &TDV,
|
||||||
SimpleTempData<typename MeshType::FaceContainer, PDFaceInfo> &TDF,
|
//SimpleTempData<typename MeshType::FaceContainer, PDFaceInfo> &TDF,
|
||||||
bool OnlySelected=false)
|
bool OnlySelected=false)
|
||||||
{
|
{
|
||||||
//vcg::face::Pos<FaceType> ep;
|
//vcg::face::Pos<FaceType> ep;
|
||||||
|
@ -1289,7 +1289,7 @@ static void VertexCoordPasoDobleFast(MeshType &m, int NormalSmoothStep, typename
|
||||||
FaceNormalAngleThreshold(m,TDF,Sigma);
|
FaceNormalAngleThreshold(m,TDF,Sigma);
|
||||||
|
|
||||||
for(int j=0;j<FitStep;++j)
|
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.
|
//! Laplacian smoothing with a reprojection on a target surface.
|
||||||
|
|
Loading…
Reference in New Issue