Initial commit
This commit is contained in:
parent
57c08ade0f
commit
e3b4ba1f45
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue