From 7669351ac6951fa725aaabea94b7fcbe45ef3be5 Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Mon, 13 Sep 2010 10:02:07 +0000 Subject: [PATCH] corrected small bug in the MEASURE_VERTEX_QUALITY_HISTOGRAM (prevented the computation of the filter itself!) --- src/meshlabplugins/filter_measure/filter_measure.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/filter_measure/filter_measure.cpp b/src/meshlabplugins/filter_measure/filter_measure.cpp index d17c1d16b..3c34391d0 100644 --- a/src/meshlabplugins/filter_measure/filter_measure.cpp +++ b/src/meshlabplugins/filter_measure/filter_measure.cpp @@ -351,7 +351,7 @@ bool FilterMeasurePlugin::applyFilter(QAction *filter, MeshDocument &md, RichPar Histogramf H; H.SetRange(RangeMin,RangeMax,binNum); - if(ID(filter)==FP_MEASURE_VERTEX_QUALITY_DISTRIBUTION) + if(ID(filter)==FP_MEASURE_VERTEX_QUALITY_HISTOGRAM) { for(CMeshO::VertexIterator vi = m.vert.begin(); vi != m.vert.end(); ++vi) if(!(*vi).IsD())