2004-06-22 16:29:36 +02:00
|
|
|
#ifndef __VCGLIB_VERTEX__AT__TYPE
|
|
|
|
#define __VCGLIB_VERTEX__AT__TYPE
|
|
|
|
|
|
|
|
#define VERTEX_TYPE VertexATVN
|
|
|
|
|
|
|
|
#define __VCGLIB_VERTEX_AT
|
|
|
|
#define __VCGLIB_VERTEX_VN
|
2004-07-08 10:46:15 +02:00
|
|
|
#define __VCGLIB_VERTEX_VM
|
2004-06-22 16:29:36 +02:00
|
|
|
|
|
|
|
#include <vcg/simplex/vertex/base.h>
|
|
|
|
|
|
|
|
#undef VERTEX_TYPE
|
2004-07-08 10:46:15 +02:00
|
|
|
#undef __VCGLIB_VERTEX_VM
|
2004-06-22 16:29:36 +02:00
|
|
|
#undef __VCGLIB_VERTEX_AT
|
|
|
|
#undef __VCGLIB_VERTEX_VN
|
|
|
|
|
|
|
|
namespace vcg {
|
|
|
|
|
|
|
|
template < class VETYPE, class VFTYPE, class VTTYPE>
|
|
|
|
class VertexATVNf : public VertexATVN<float,VETYPE,VFTYPE,VTTYPE> {};
|
|
|
|
|
|
|
|
template < class VETYPE, class VFTYPE, class VTTYPE>
|
|
|
|
class VertexATVNd : public VertexATVN<double,VETYPE,VFTYPE,VTTYPE> {};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|