From b0565a628c404f96bb14a3ceea09658bd9fa4c71 Mon Sep 17 00:00:00 2001 From: Guido Ranzuglia granzuglia Date: Mon, 22 Oct 2012 10:11:08 +0000 Subject: [PATCH] - changed function names according to the new vcglib syntax --- src/sampleplugins/filtergeodesic/filtergeodesic.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sampleplugins/filtergeodesic/filtergeodesic.cpp b/src/sampleplugins/filtergeodesic/filtergeodesic.cpp index ad50fdde1..1ac89f834 100644 --- a/src/sampleplugins/filtergeodesic/filtergeodesic.cpp +++ b/src/sampleplugins/filtergeodesic/filtergeodesic.cpp @@ -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::VertexQualityRamp(m.cm); + tri::UpdateColor::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::VertexQualityRamp(m.cm); + else tri::UpdateColor::PerVertexQualityRamp(m.cm); } break;