vertex with normal.

This commit is contained in:
Nico Pietroni 2004-05-05 09:12:53 +00:00
parent d320e3a124
commit e11d0ffcdd
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#ifndef __VCGLIB_VERTEX__VN__TYPE
#define __VCGLIB_VERTEX__VN__TYPE
#define VERTEX_TYPE VertexVN
#define __VCGLIB_VERTEX_VN
#include <vcg/simplex/vertex/base.h>
#undef VERTEX_TYPE
#undef __VCGLIB_VERTEX_VN
namespace vcg {
typedef VertexVN<float> VertexVNf;
typedef VertexVN<double> VertexVNd;
}
#endif