diff --git a/vcg/complex/algorithms/stat.h b/vcg/complex/algorithms/stat.h index f7bda0e5..0ae957db 100644 --- a/vcg/complex/algorithms/stat.h +++ b/vcg/complex/algorithms/stat.h @@ -71,7 +71,7 @@ public: typename MeshType::template PerMeshAttributeHandle < std::pair > mmqH; mmqH = tri::Allocator::template GetPerMeshAttribute >(m,"minmaxQ"); - std::pair minmax = std::make_pair(std::numeric_limits::max(), -std::numeric_limits::max()); + std::pair minmax = std::make_pair(std::numeric_limits::max(), -std::numeric_limits::max()); for(VertexIterator vi = m.vert.begin(); vi != m.vert.end(); ++vi) if(!(*vi).IsD()) @@ -399,7 +399,7 @@ public: static ScalarType ComputeEdgeLengthAverage(MeshType & m) { - Histogramf h; + Histogram h; ComputeEdgeLengthHistogram(m,h); return h.Avg(); }