2004-10-25 18:17:30 +02:00
|
|
|
#ifndef __VCGLIB_VERTEX__ATVMVN__TYPE
|
|
|
|
#define __VCGLIB_VERTEX__ATVMVN__TYPE
|
2004-07-08 15:20:10 +02:00
|
|
|
|
2004-07-09 12:10:22 +02:00
|
|
|
#define VERTEX_TYPE VertexATVMVN
|
2004-07-08 15:20:10 +02:00
|
|
|
|
|
|
|
#define __VCGLIB_VERTEX_AT
|
2004-07-09 12:10:22 +02:00
|
|
|
#define __VCGLIB_VERTEX_VM
|
2004-07-08 15:20:10 +02:00
|
|
|
#define __VCGLIB_VERTEX_VN
|
|
|
|
|
|
|
|
#include <vcg/simplex/vertex/base.h>
|
|
|
|
|
|
|
|
#undef VERTEX_TYPE
|
|
|
|
#undef __VCGLIB_VERTEX_AT
|
2004-07-09 12:10:22 +02:00
|
|
|
#undef __VCGLIB_VERTEX_VM
|
2004-07-08 15:20:10 +02:00
|
|
|
#undef __VCGLIB_VERTEX_VN
|
|
|
|
|
|
|
|
namespace vcg {
|
|
|
|
|
2005-03-14 17:46:50 +01:00
|
|
|
template < class VETYPE, class VFTYPE, class VTTYPE,class TCTYPE = TCoord2<float,1>, class CoordTYPE= Point3<float> >
|
2004-10-25 18:17:30 +02:00
|
|
|
class VertexATVMVNf : public VertexATVMVN<float,VETYPE,VFTYPE,VTTYPE,TCTYPE,CoordTYPE> {};
|
2004-07-08 15:20:10 +02:00
|
|
|
|
|
|
|
template < class VETYPE, class VFTYPE, class VTTYPE>
|
2004-07-09 12:10:22 +02:00
|
|
|
class VertexATVMVNd : public VertexATVMVN<double,VETYPE,VFTYPE,VTTYPE> {};
|
2004-07-08 15:20:10 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|