From 47af92e51fdf93dbef872b1fe5ab6fbf115ff193 Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Tue, 2 Aug 2005 11:37:29 +0000 Subject: [PATCH] renamed typedef VertexContainer into VertContainer (like trimesh) --- vcg/complex/vertexmesh/base.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/complex/vertexmesh/base.h b/vcg/complex/vertexmesh/base.h index 8d9168c5..2a7eae8a 100644 --- a/vcg/complex/vertexmesh/base.h +++ b/vcg/complex/vertexmesh/base.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.1 2005/03/09 13:22:55 ganovelli +creation + ****************************************************************************/ @@ -53,7 +56,7 @@ namespace vertex { template < class VertContainerType > class VertexMesh{ public: - typedef VertContainerType VertexContainer; + typedef VertContainerType VertContainer; typedef typename VertContainerType::value_type VertexType; typedef typename VertContainerType::value_type::ScalarType ScalarType; typedef typename VertContainerType::value_type::CoordType CoordType;