vertex with vertex-face topology...

This commit is contained in:
Nico Pietroni 2004-05-05 08:54:10 +00:00
parent ff948edd54
commit d59a47608b
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
#ifndef __VCGLIB_VERTEX__A__TYPE
#define __VCGLIB_VERTEX__A__TYPE
#define VERTEX_TYPE VertexA
#define __VCGLIB_VERTEX_A
#include <vcg/simplex/vertex/base.h>
#undef VERTEX_TYPE
#undef __VCGLIB_VERTEX_A
namespace vcg {
template <class VFTYPE>
class VertexAf : public VertexA<float,VFTYPE> {};
template <class VFTYPE>
class VertexAd : public VertexA<double,VFTYPE> {};
}
#endif