vcglib/vcg/simplex/vertex/with/at.h

24 lines
425 B
C
Raw Normal View History

2004-05-05 13:58:52 +02:00
#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>
2004-05-05 19:04:15 +02:00
class VertexATf : public VertexAT<float,DUMMYFACETYPE,VTTYPE> {};
2004-05-05 13:58:52 +02:00
2004-05-05 19:04:15 +02:00
template <class VTTYPE>
class VertexATd : public VertexAT<double,DUMMYFACETYPE,VTTYPE> {};
2004-05-05 13:58:52 +02:00
}
#endif