From a139c7006cc6002f1db2258579def3c874604bde Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Tue, 22 Jun 2004 14:29:36 +0000 Subject: [PATCH] vertex with tetrahedron adiacency, normal and mark for decimation --- vcg/simplex/vertex/with/atvnvm.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 vcg/simplex/vertex/with/atvnvm.h diff --git a/vcg/simplex/vertex/with/atvnvm.h b/vcg/simplex/vertex/with/atvnvm.h new file mode 100644 index 00000000..73cd32b2 --- /dev/null +++ b/vcg/simplex/vertex/with/atvnvm.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 VETYPE, class VFTYPE, class VTTYPE> +class VertexATVNf : public VertexATVN {}; + +template < class VETYPE, class VFTYPE, class VTTYPE> +class VertexATVNd : public VertexATVN {}; + +} + +#endif