vertex - tetrahedron topology

This commit is contained in:
Nico Pietroni 2004-05-05 11:58:52 +00:00
parent 9dfae21460
commit 06eaf9cabe
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
#ifndef __VCGLIB_VERTEX__AT__TYPE
#define __VCGLIB_VERTEX__AT__TYPE
#define VERTEX_TYPE VertexAT
#define __VCGLIB_VERTEX_AT
#include <vcg/simplex/vertex/base.h>
#undef VERTEX_TYPE
#undef __VCGLIB_VERTEX_AT
namespace vcg {
template <class VTTYPE>
class VertexATf : public VertexAT<float,VTTYPE> {};
template <class VFTYPE>
class VertexATd : public VertexAT<double,VTTYPE> {};
}
#endif