From e3b4ba1f45c5c6756cff65bc6e5292d188c6fa66 Mon Sep 17 00:00:00 2001 From: cignoni Date: Wed, 6 Jul 2005 08:09:26 +0000 Subject: [PATCH] Initial commit --- vcg/simplex/vertex/with/vnvq.h | 23 +++++++++++++++++++++++ vcg/simplex/vertex/with/vq.h | 21 +++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 vcg/simplex/vertex/with/vnvq.h create mode 100644 vcg/simplex/vertex/with/vq.h diff --git a/vcg/simplex/vertex/with/vnvq.h b/vcg/simplex/vertex/with/vnvq.h new file mode 100644 index 00000000..8619d5bb --- /dev/null +++ b/vcg/simplex/vertex/with/vnvq.h @@ -0,0 +1,23 @@ +#ifndef __VCGLIB_VERTEX__VNVQ__TYPE +#define __VCGLIB_VERTEX__VNVQ__TYPE + + +#define VERTEX_TYPE VertexVNVQ + +#define __VCGLIB_VERTEX_VN +#define __VCGLIB_VERTEX_VQ + +#include + + +#undef VERTEX_TYPE +#undef __VCGLIB_VERTEX_VN +#undef __VCGLIB_VERTEX_VQ + + +namespace vcg { +typedef VertexVNVQ VertexVNVQf; +typedef VertexVNVQ VertexVNVQd; +} + +#endif diff --git a/vcg/simplex/vertex/with/vq.h b/vcg/simplex/vertex/with/vq.h new file mode 100644 index 00000000..fd4ef51e --- /dev/null +++ b/vcg/simplex/vertex/with/vq.h @@ -0,0 +1,21 @@ +#ifndef __VCGLIB_VERTEX__VQ__TYPE +#define __VCGLIB_VERTEX__VQ__TYPE + + +#define VERTEX_TYPE VertexVQ + +#define __VCGLIB_VERTEX_VQ + +#include + + +#undef VERTEX_TYPE + +#undef __VCGLIB_VERTEX_VQ + +namespace vcg { +typedef VertexVQ VertexVQf; +typedef VertexVQ VertexVQd; +} + +#endif