28 lines
508 B
C++
28 lines
508 B
C++
#ifndef __VCGLIB_VERTEX__VCVN__TYPE
|
|
#define __VCGLIB_VERTEX__VCVN__TYPE
|
|
|
|
|
|
#define VERTEX_TYPE VertexVCVMVNVQ
|
|
|
|
#define __VCGLIB_VERTEX_VC
|
|
#define __VCGLIB_VERTEX_VM
|
|
#define __VCGLIB_VERTEX_VN
|
|
#define __VCGLIB_VERTEX_VQ
|
|
|
|
#include <vcg/simplex/vertex/base.h>
|
|
|
|
|
|
#undef VERTEX_TYPE
|
|
#undef __VCGLIB_VERTEX_VC
|
|
#undef __VCGLIB_VERTEX_VM
|
|
#undef __VCGLIB_VERTEX_VN
|
|
#undef __VCGLIB_VERTEX_VQ
|
|
|
|
|
|
namespace vcg {
|
|
typedef VertexVCVMVNVQ<float> VertexVCVNVMVQf;
|
|
typedef VertexVCVMVNVQ<double> VertexVCVNVMVQd;
|
|
}
|
|
|
|
#endif
|