From ab8fe0462d4d16db5794db3d9697e37dc2f2113d Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 15 Jan 2009 08:04:12 +0000 Subject: [PATCH] added some missing typename for gcc compiling --- vcg/complex/trimesh/point_sampling.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/vcg/complex/trimesh/point_sampling.h b/vcg/complex/trimesh/point_sampling.h index 030565a3..2ef07f87 100644 --- a/vcg/complex/trimesh/point_sampling.h +++ b/vcg/complex/trimesh/point_sampling.h @@ -676,9 +676,9 @@ static void SingleFaceRaster(FaceType &f, VertexSampler &ps, const Point2 sht, Point3 p, ScalarType radius) { - vcg::SpatialHashTable::CellIterator itBegin; - vcg::SpatialHashTable::CellIterator itEnd; - vcg::SpatialHashTable::CellIterator it; + typename vcg::SpatialHashTable::CellIterator itBegin; + typename vcg::SpatialHashTable::CellIterator itEnd; + typename vcg::SpatialHashTable::CellIterator it; // get the samples closest to the given one sht.Grid(p, itBegin, itEnd); @@ -689,9 +689,7 @@ static bool checkPoissonDisk(vcg::SpatialHashTable sht, Point3P() - p) - if (d.Norm() < radius) + if (Distance(v->P(),p) < radius) return false; } @@ -714,7 +712,7 @@ static void Poissondisk(MetroMesh &m, VertexSampler &ps, int sampleNum, int vers // spatial index of mesh face - used to search where to place the samples vcg::SpatialHashTable searchSHT; - vcg::SpatialHashTable::CellIterator cellIt; + typename vcg::SpatialHashTable::CellIterator cellIt; // spatial hash table of the generated samples - used to check the radius constrain vcg::SpatialHashTable checkSHT; @@ -761,8 +759,8 @@ static void Poissondisk(MetroMesh &m, VertexSampler &ps, int sampleNum, int vers std::vector activeCells; std::vector cellsToSubdivide; std::vector faceToSubdivide; - std::vector::iterator faceToSubdivideIterator; - std::vector::iterator it; + typename std::vector::iterator faceToSubdivideIterator; + typename std::vector::iterator it; int level = 0; do