- changed function names according to the new vcglib syntax

This commit is contained in:
Guido Ranzuglia granzuglia 2012-10-22 10:11:08 +00:00
parent b64b2579ac
commit b0565a628c

View File

@ -146,7 +146,7 @@ bool FilterGeodesic::applyFilter(QAction *filter, MeshDocument &md, RichParamete
if(unreachedCnt >0 )
Log("Warning: %i vertices were unreacheable from the borders, probably your mesh has unreferenced vertices",unreachedCnt);
tri::UpdateColor<CMeshO>::VertexQualityRamp(m.cm);
tri::UpdateColor<CMeshO>::PerVertexQualityRamp(m.cm);
}
break;
@ -175,7 +175,7 @@ bool FilterGeodesic::applyFilter(QAction *filter, MeshDocument &md, RichParamete
Log("Warning: %i vertices were unreacheable from the borders, probably your mesh has unreferenced vertices",unreachedCnt);
if(!ret) Log("Mesh Has no borders. No geodesic distance computed");
else tri::UpdateColor<CMeshO>::VertexQualityRamp(m.cm);
else tri::UpdateColor<CMeshO>::PerVertexQualityRamp(m.cm);
}
break;