created
This commit is contained in:
parent
7ca3eb884f
commit
0574784d39
|
@ -0,0 +1,23 @@
|
|||
#ifndef __VCGLIB_VERTEX__AE__TYPE
|
||||
#define __VCGLIB_VERTEX__AE__TYPE
|
||||
|
||||
#define VERTEX_TYPE VertexAE
|
||||
|
||||
#define __VCGLIB_VERTEX_AE
|
||||
|
||||
#include <vcg/simplex/vertex/base.h>
|
||||
|
||||
#undef VERTEX_TYPE
|
||||
#undef __VCGLIB_VERTEX_AE
|
||||
|
||||
namespace vcg {
|
||||
|
||||
template <class VFTYPE>
|
||||
class VertexAEf : public VertexAE<float,VFTYPE> {};
|
||||
|
||||
template <class VFTYPE>
|
||||
class VertexAEd : public VertexAE<double,VFTYPE> {};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
|
@ -0,0 +1,29 @@
|
|||
#ifndef __VCGLIB_VERTEX__AFVN__TYPE
|
||||
#define __VCGLIB_VERTEX__AFVN__TYPE
|
||||
|
||||
|
||||
#define VERTEX_TYPE VertexAFVN
|
||||
|
||||
#define __VCGLIB_VERTEX_AF
|
||||
#define __VCGLIB_VERTEX_VN
|
||||
|
||||
|
||||
#include <vcg/simplex/vertex/base.h>
|
||||
|
||||
|
||||
#undef VERTEX_TYPE
|
||||
#undef __VCGLIB_VERTEX_AF
|
||||
#undef __VCGLIB_VERTEX_VN
|
||||
|
||||
|
||||
namespace vcg {
|
||||
|
||||
template <class VFTYPE>
|
||||
class VertexAFVNf : public VertexAFVN<float,VFTYPE> {};
|
||||
|
||||
template <class VFTYPE>
|
||||
class VertexAFVNd : public VertexAFVN<double,VFTYPE> {};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
|
@ -1,29 +0,0 @@
|
|||
#ifndef __VCGLIB_VERTEX__AN__TYPE
|
||||
#define __VCGLIB_VERTEX__AN__TYPE
|
||||
|
||||
|
||||
#define VERTEX_TYPE VertexAN
|
||||
|
||||
#define __VCGLIB_VERTEX_A
|
||||
#define __VCGLIB_VERTEX_N
|
||||
|
||||
|
||||
#include <vcg/simplex/vertex/base.h>
|
||||
|
||||
|
||||
#undef VERTEX_TYPE
|
||||
#undef __VCGLIB_VERTEX_A
|
||||
#undef __VCGLIB_VERTEX_N
|
||||
|
||||
|
||||
namespace vcg {
|
||||
|
||||
template <class VFTYPE>
|
||||
class VertexANf : public VertexAN<float,VFTYPE> {};
|
||||
|
||||
template <class VFTYPE>
|
||||
class VertexANd : public VertexAN<double,VFTYPE> {};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
|
@ -0,0 +1,23 @@
|
|||
#ifndef __VCGLIB_VERTEX__EA__TYPE
|
||||
#define __VCGLIB_VERTEX__EA__TYPE
|
||||
|
||||
#define VERTEX_TYPE VertexEA
|
||||
|
||||
#define __VCGLIB_VERTEX_EA
|
||||
|
||||
#include <vcg/simplex/vertex/base.h>
|
||||
|
||||
#undef VERTEX_TYPE
|
||||
#undef __VCGLIB_VERTEX_EA
|
||||
|
||||
namespace vcg {
|
||||
|
||||
template <class VFTYPE>
|
||||
class VertexEAf : public VertexEA<float,VFTYPE> {};
|
||||
|
||||
template <class VFTYPE>
|
||||
class VertexEAd : public VertexEA<double,VFTYPE> {};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue