This commit is contained in:
ganovelli 2004-05-14 00:39:27 +00:00
parent 3a5624836a
commit 91e427d61f
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#ifndef __VCGLIB_VERTEX__VCVNVQ__TYPE
#define __VCGLIB_VERTEX__VCVNVQ__TYPE
#define VERTEX_TYPE VertexVCVNVQ
#define __VCGLIB_VERTEX_VC
#define __VCGLIB_VERTEX_VN
#define __VCGLIB_VERTEX_VQ
#include <vcg/simplex/vertex/base.h>
#undef VERTEX_TYPE
#undef __VCGLIB_VERTEX_VC
#undef __VCGLIB_VERTEX_VN
#undef __VCGLIB_VERTEX_VQ
namespace vcg {
typedef VertexVCVNVQ<float> VertexVCVNVQf;
typedef VertexVCVNVQ<double> VertexVCVNVQd;
}
#endif

View File

@ -0,0 +1,23 @@
#ifndef __VCGLIB_VERTEX__VCVQ__TYPE
#define __VCGLIB_VERTEX__VCVQ__TYPE
#define VERTEX_TYPE VertexVCVQ
#define __VCGLIB_VERTEX_VC
#define __VCGLIB_VERTEX_VQ
#include <vcg/simplex/vertex/base.h>
#undef VERTEX_TYPE
#undef __VCGLIB_VERTEX_VC
#undef __VCGLIB_VERTEX_VQ
namespace vcg {
typedef VertexVCVQ<float> VertexVCVQf;
typedef VertexVCVQ<double> VertexVCVQd;
}
#endif