Initial commit

This commit is contained in:
Paolo Cignoni 2005-07-06 08:09:26 +00:00
parent 57c08ade0f
commit e3b4ba1f45
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,23 @@
#ifndef __VCGLIB_VERTEX__VNVQ__TYPE
#define __VCGLIB_VERTEX__VNVQ__TYPE
#define VERTEX_TYPE VertexVNVQ
#define __VCGLIB_VERTEX_VN
#define __VCGLIB_VERTEX_VQ
#include <vcg/simplex/vertex/base.h>
#undef VERTEX_TYPE
#undef __VCGLIB_VERTEX_VN
#undef __VCGLIB_VERTEX_VQ
namespace vcg {
typedef VertexVNVQ<float> VertexVNVQf;
typedef VertexVNVQ<double> VertexVNVQd;
}
#endif

View File

@ -0,0 +1,21 @@
#ifndef __VCGLIB_VERTEX__VQ__TYPE
#define __VCGLIB_VERTEX__VQ__TYPE
#define VERTEX_TYPE VertexVQ
#define __VCGLIB_VERTEX_VQ
#include <vcg/simplex/vertex/base.h>
#undef VERTEX_TYPE
#undef __VCGLIB_VERTEX_VQ
namespace vcg {
typedef VertexVQ<float> VertexVQf;
typedef VertexVQ<double> VertexVQd;
}
#endif