2004-05-05 10:58:43 +02:00
|
|
|
#ifndef __VCGLIB_VERTEX__AF__TYPE
|
|
|
|
#define __VCGLIB_VERTEX__AF__TYPE
|
2004-05-05 10:54:10 +02:00
|
|
|
|
2004-05-05 10:58:43 +02:00
|
|
|
#define VERTEX_TYPE VertexAF
|
2004-05-05 10:54:10 +02:00
|
|
|
|
2004-05-05 10:58:43 +02:00
|
|
|
#define __VCGLIB_VERTEX_AF
|
2004-05-05 10:54:10 +02:00
|
|
|
|
|
|
|
#include <vcg/simplex/vertex/base.h>
|
|
|
|
|
|
|
|
#undef VERTEX_TYPE
|
2004-05-05 10:58:43 +02:00
|
|
|
#undef __VCGLIB_VERTEX_AF
|
2004-05-05 10:54:10 +02:00
|
|
|
|
|
|
|
namespace vcg {
|
|
|
|
|
|
|
|
template <class VFTYPE>
|
2004-05-05 10:58:43 +02:00
|
|
|
class VertexAFf : public VertexAF<float,VFTYPE> {};
|
2004-05-05 10:54:10 +02:00
|
|
|
|
|
|
|
template <class VFTYPE>
|
2004-05-05 10:58:43 +02:00
|
|
|
class VertexAFd : public VertexAF<double,VFTYPE> {};
|
2004-05-05 10:54:10 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|