From 811b263e3358854820dafbe028562a6f7f7eb95d Mon Sep 17 00:00:00 2001 From: ganovelli Date: Tue, 30 Sep 2008 10:40:42 +0000 Subject: [PATCH] [Namespaces changes] vert->vertex clean up of some namespaces to comply the following naming: Complexes (3 letters namespaces): order 0 (point cloud ) :vrt order 1 (edge meshes) :edg order 2 (triangle meshes) :tri order 3 (triangle meshes) :tet Simplexes (4 letters namespaces): order 0 (vertex) :vert order 1 (edge) :edge order 2 (triangle) :triangle order 3 (tetrahedron) :tetrahedron --- vcg/simplex/vertexplus/base.h | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/vcg/simplex/vertexplus/base.h b/vcg/simplex/vertexplus/base.h index 84ef041c..ea0beaff 100644 --- a/vcg/simplex/vertexplus/base.h +++ b/vcg/simplex/vertexplus/base.h @@ -112,14 +112,15 @@ we have to build the type a step a time (deriving from a single ancestor at a ti */ template -class VertexBase: public vert::EmptyTexCoord< - vert::EmptyVFAdj< - vert::EmptyColorQuality< - vert::EmptyBitFlags< - vert::EmptyCoordNormal< - vert::EmptyCurvature< - vert::EmptyCurvatureDir< - VertexTypeHolder > > > > > > >{ +class VertexBase: public vertex::EmptyTexCoord< + vertex::EmptyVFAdj< + vertex::EmptyVEAdj< + vertex::EmptyColorQuality< + vertex::EmptyBitFlags< + vertex::EmptyCoordNormal< + vertex::EmptyCurvature< + vertex::EmptyCurvatureDir< + VertexTypeHolder > > > > > > > >{ };