From fc04c15046122718de2781c7fb44803585db38d2 Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 26 Nov 2015 12:15:09 +0000 Subject: [PATCH] Renamed the anonymous Build() functions to something more meaningful --- vcg/complex/algorithms/create/platonic.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vcg/complex/algorithms/create/platonic.h b/vcg/complex/algorithms/create/platonic.h index 09891c1c..6fc640a5 100644 --- a/vcg/complex/algorithms/create/platonic.h +++ b/vcg/complex/algorithms/create/platonic.h @@ -604,7 +604,7 @@ void Torus(MeshType &m, float hRingRadius, float vRingRadius, int hRingDiv=24, i // this function build a mesh starting from a vector of generic coords (objects having a triple of float at their beginning) // and a vector of faces (objects having a triple of ints at theri beginning). template -void Build( MeshType & in, const V & v, const F & f) +void BuildMeshFromCoordVectorIndexVector( MeshType & in, const V & v, const F & f) { typedef typename MeshType::CoordType CoordType; typedef typename MeshType::VertexPointer VertexPointer; @@ -645,10 +645,10 @@ void Build( MeshType & in, const V & v, const F & f) template -void Build( MeshType & in, const V & v) +void BuildMeshFromCoordVector( MeshType & in, const V & v) { std::vector dummyfaceVec; - Build(in,v,dummyfaceVec); + BuildMeshFromCoordVectorIndexVector(in,v,dummyfaceVec); }