First working version!

This commit is contained in:
Paolo Cignoni 2004-03-29 14:05:43 +00:00
parent 9ddcfd8420
commit 5e8b06d5cd
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#ifndef __VCGLIB_VERTEX__CN__TYPE
#define __VCGLIB_VERTEX__CN__TYPE
namespace vcg {
class VertexCNf : public VertexSimp1< VertexCNf, DumET, vert::Normal3f, vert::Color4b, vert::Flag, vert::Coord3f> {};
class VertexCNd : public VertexSimp1< VertexCNd, DumET, vert::Normal3d, vert::Color4b, vert::Flag, vert::Coord3d> {};
}
#endif

View File

@ -0,0 +1,9 @@
#ifndef __VCGLIB_VERTEX__N__TYPE
#define __VCGLIB_VERTEX__N__TYPE
namespace vcg {
class VertexNd : public VertexSimp1< VertexNd, DumET, vert::Normal3d, vert::Flag, vert::Coord3d> {};
class VertexNf : public VertexSimp1< VertexNf, DumET, vert::Normal3f, vert::Flag, vert::Coord3f> {};
}
#endif