created
This commit is contained in:
parent
3a5624836a
commit
91e427d61f
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue