From f8ff73607448835d69dc53b0985d8a10aa896214 Mon Sep 17 00:00:00 2001 From: "T.Alderighi" Date: Fri, 11 May 2018 11:19:18 +0200 Subject: [PATCH] fix typos --- vcg/complex/algorithms/stat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }