From b166dd19dab33d65bf62e981d871c1e05aa5f961 Mon Sep 17 00:00:00 2001 From: cignoni Date: Fri, 7 Oct 2005 15:20:52 +0000 Subject: [PATCH] Initial release --- vcg/simplex/vertexplus/with/afvcvnvq.h | 9 +++++++++ vcg/simplex/vertexplus/with/afvn.h | 11 +++++++++++ vcg/simplex/vertexplus/with/vcvn.h | 12 ++++++++++++ vcg/simplex/vertexplus/with/vn.h | 13 +++++++++++++ 4 files changed, 45 insertions(+) create mode 100644 vcg/simplex/vertexplus/with/afvcvnvq.h create mode 100644 vcg/simplex/vertexplus/with/afvn.h create mode 100644 vcg/simplex/vertexplus/with/vcvn.h create mode 100644 vcg/simplex/vertexplus/with/vn.h diff --git a/vcg/simplex/vertexplus/with/afvcvnvq.h b/vcg/simplex/vertexplus/with/afvcvnvq.h new file mode 100644 index 00000000..aa9aa535 --- /dev/null +++ b/vcg/simplex/vertexplus/with/afvcvnvq.h @@ -0,0 +1,9 @@ +#ifndef __VCGLIB_VERTEXPLUS_AFVCVNVQ_TYPE +#define __VCGLIB_VERTEXPLUS_AFVCVNVQ_TYPE +namespace vcg { + template + class VertexAFVCVNVQd : public VertexSimp2< VertexAFVCVNVQd, DumET, FaceTemplate, vert::Normal3d, vert::VFAdj, vert::Flag, vert::Coord3d> {}; + template + class VertexAFVCVNVQf : public VertexSimp2< VertexAFVCVNVQf, DumET, FaceTemplate, vert::Normal3f, vert::VFAdj, vert::Flag, vert::Coord3f> {}; +} +#endif diff --git a/vcg/simplex/vertexplus/with/afvn.h b/vcg/simplex/vertexplus/with/afvn.h new file mode 100644 index 00000000..e26f8e78 --- /dev/null +++ b/vcg/simplex/vertexplus/with/afvn.h @@ -0,0 +1,11 @@ +#ifndef __VCGLIB_VERTEXPLUS_AFVN_TYPE +#define __VCGLIB_VERTEXPLUS_AFVN_TYPE +namespace vcg { + + template + class VertexAFVNd : public VertexSimp2< VertexAFVNd, EdgeTemplate, FaceTemplate, vert::Normal3d, vert::VFAdj, vert::Flag, vert::Coord3d> {}; + + template + class VertexAFVNf : public VertexSimp2< VertexAFVNf, EdgeTemplate, FaceTemplate, vert::Normal3f, vert::VFAdj, vert::Flag, vert::Coord3f> {}; +} +#endif diff --git a/vcg/simplex/vertexplus/with/vcvn.h b/vcg/simplex/vertexplus/with/vcvn.h new file mode 100644 index 00000000..4db112e9 --- /dev/null +++ b/vcg/simplex/vertexplus/with/vcvn.h @@ -0,0 +1,12 @@ +#ifndef __VCGLIB_VERTEXPLUS_VCVN_TYPE +#define __VCGLIB_VERTEXPLUS_VCVN_TYPE +namespace vcg { + + template + class VertexVCVNf : public VertexSimp1< VertexVCVNf, DumET, vert::Normal3f, vert::Color4b, vert::Flag, vert::Coord3f> {}; + template + class VertexVCVNd : public VertexSimp1< VertexVCVNd, DumET, vert::Normal3d, vert::Color4b, vert::Flag, vert::Coord3d> {}; + +} + +#endif diff --git a/vcg/simplex/vertexplus/with/vn.h b/vcg/simplex/vertexplus/with/vn.h new file mode 100644 index 00000000..010f21cc --- /dev/null +++ b/vcg/simplex/vertexplus/with/vn.h @@ -0,0 +1,13 @@ +#ifndef __VCGLIB_VERTEXPLUS_VN_TYPE +#define __VCGLIB_VERTEXPLUS_VN_TYPE +namespace vcg { + + template + class VertexVNf : public VertexSimp2< VertexVNf, EdgeTemplate, FaceTemplate, vert::Normal3f, vert::Color4b, vert::Flag, vert::Coord3f> {}; + + template + class VertexVNd : public VertexSimp2< VertexVNd, EdgeTemplate, FaceTemplate, vert::Normal3d, vert::Color4b, vert::Flag, vert::Coord3d> {}; + +} + +#endif