00001 #ifndef __VCGLIB_VERTEX__BASE__TYPE
00002 #define __VCGLIB_VERTEX__BASE__TYPE
00003
00004
00005 #define VERTEX_TYPE Vertex
00006
00007 #include <vcg/simplex/vertex/base.h>
00008
00009
00010 #undef VERTEX_TYPE
00011
00012
00013 namespace vcg {
00014 template < class VETYPE, class VFTYPE, class VTTYPE,class TCTYPE = TexCoord2<float,1>, class CoordTYPE= Point3<float> >
00015 class Vertexf : public Vertex<float,VETYPE,VFTYPE,VTTYPE, TCTYPE , CoordTYPE> {};
00016
00017 template < class VETYPE, class VFTYPE, class VTTYPE>
00018 class Vertexd : public Vertex<double,VETYPE,VFTYPE,VTTYPE> {};
00019
00020 }
00021
00022 #endif