vertex with color and normal.

This commit is contained in:
Nico Pietroni 2004-05-05 09:09:39 +00:00
parent 52fd0aab80
commit d320e3a124
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
#ifndef __VCGLIB_VERTEX__VCVN__TYPE
#define __VCGLIB_VERTEX__VCVN__TYPE
#define VERTEX_TYPE VertexVCVN
#define __VCGLIB_VERTEX_VN
#define __VCGLIB_VERTEX_VC
#include <vcg/simplex/vertex/base.h>
#undef VERTEX_TYPE
#undef __VCGLIB_VERTEX_VN
#undef __VCGLIB_VERTEX_VC
namespace vcg {
typedef VertexVCVN<float> VertexVCVNf;
typedef VertexVCVN<double> VertexVCVNd;
}
#endif