From d19afb03fb44c9fb437b83d879f8ef8f86ab6a7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20M=C3=B6ller?= Date: Wed, 8 Aug 2012 16:10:57 +0000 Subject: [PATCH] - more this ptr git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@651 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Tools/Decimater/McDecimaterT.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/OpenMesh/Tools/Decimater/McDecimaterT.cc b/src/OpenMesh/Tools/Decimater/McDecimaterT.cc index 721c9129..626d3f35 100644 --- a/src/OpenMesh/Tools/Decimater/McDecimaterT.cc +++ b/src/OpenMesh/Tools/Decimater/McDecimaterT.cc @@ -199,8 +199,8 @@ size_t McDecimaterT::decimate_to_faces(size_t _nv, size_t _nf) { CollapseInfo ci(mesh_, tmpHandle); // Check if legal we analyze the priority of this collapse operation - if (is_collapse_legal(ci)) { - double energy = collapse_priority(ci); + if (this->is_collapse_legal(ci)) { + double energy = this->collapse_priority(ci); // Check if the current samples energy is better than any energy before if ( energy < bestEnergy ) { @@ -221,7 +221,7 @@ size_t McDecimaterT::decimate_to_faces(size_t _nv, size_t _nf) { CollapseInfo ci(mesh_, bestHandle); // check topological correctness AGAIN ! - if (!is_collapse_legal(ci)) + if (!this->is_collapse_legal(ci)) continue; // adjust complexity in advance (need boundary status) @@ -238,7 +238,7 @@ size_t McDecimaterT::decimate_to_faces(size_t _nv, size_t _nf) { nf -= 2; // pre-processing - preprocess_collapse(ci); + this->preprocess_collapse(ci); // perform collapse mesh_.collapse(bestHandle); @@ -251,7 +251,7 @@ size_t McDecimaterT::decimate_to_faces(size_t _nv, size_t _nf) { mesh_.set_normal(vf_it, mesh_.calc_face_normal(vf_it.handle())); // post-process collapse - postprocess_collapse(ci); + this->postprocess_collapse(ci); }