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); }