From 169206d8d9a121f9619d039cc2d395af812f7b38 Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Thu, 6 May 2004 13:55:50 +0000 Subject: [PATCH] vertex with normals and vertex-tetra topology --- vcg/simplex/vertex/with/atvn.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 vcg/simplex/vertex/with/atvn.h diff --git a/vcg/simplex/vertex/with/atvn.h b/vcg/simplex/vertex/with/atvn.h new file mode 100644 index 00000000..93918db9 --- /dev/null +++ b/vcg/simplex/vertex/with/atvn.h @@ -0,0 +1,25 @@ +#ifndef __VCGLIB_VERTEX__AT__TYPE +#define __VCGLIB_VERTEX__AT__TYPE + +#define VERTEX_TYPE VertexATVN + +#define __VCGLIB_VERTEX_AT +#define __VCGLIB_VERTEX_VN + +#include + +#undef VERTEX_TYPE +#undef __VCGLIB_VERTEX_AT +#undef __VCGLIB_VERTEX_VN + +namespace vcg { + +template +class VertexATVNf : public VertexATVN {}; + +template +class VertexATVNd : public VertexATVN {}; + +} + +#endif