From 14a2b0793be6312c827a4d0a7eb36a1aec60d2fa Mon Sep 17 00:00:00 2001 From: Guido Ranzuglia granzuglia Date: Fri, 19 Oct 2012 10:17:00 +0000 Subject: [PATCH] - changed function names according to the new vcglib syntax --- src/sampleplugins/filtercreateiso/filtercreateiso.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sampleplugins/filtercreateiso/filtercreateiso.cpp b/src/sampleplugins/filtercreateiso/filtercreateiso.cpp index 65b080320..c396efbdc 100644 --- a/src/sampleplugins/filtercreateiso/filtercreateiso.cpp +++ b/src/sampleplugins/filtercreateiso/filtercreateiso.cpp @@ -122,7 +122,7 @@ bool FilterCreateIso::applyFilter(QAction *filter, MeshDocument &md, RichParamet printf("[MARCHING CUBES] Building mesh..."); MyMarchingCubes mc(m.cm, walker); walker.BuildMesh(m.cm, volume, mc, (gridSize*gridSize)/10); - vcg::tri::UpdateNormals::PerVertexNormalizedPerFace(m.cm); + vcg::tri::UpdateNormal::PerVertexNormalizedPerFace(m.cm); vcg::tri::UpdateBounding::Box(m.cm); // updates bounding box } return true;