first release version

This commit is contained in:
Nico Pietroni 2005-09-30 12:51:39 +00:00
parent 62893095e0
commit c19fce46a3
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
#ifndef __VCGLIB_VERTEX__VM__TYPE
#define __VCGLIB_VERTEX__VM__TYPE
#define VERTEX_TYPE VertexVM
#define __VCGLIB_VERTEX_VM
#include <vcg/simplex/vertex/base.h>
#undef VERTEX_TYPE
#undef __VCGLIB_VERTEX_VM
namespace vcg {
template < class VETYPE, class VFTYPE, class VTTYPE>
class VertexVMf : public VertexVM<float,VETYPE,VFTYPE,VTTYPE> {};
template < class VETYPE, class VFTYPE, class VTTYPE>
class VertexVMd : public VertexVM<double,VETYPE,VFTYPE,VTTYPE> {};
}
#endif