2012-06-09 00:06:35 +00:00
|
|
|
#ifndef GSD_VERTEX_H
|
|
|
|
#define GSD_VERTEX_H
|
|
|
|
|
2012-06-12 00:02:27 +00:00
|
|
|
#include "../version.h"
|
|
|
|
|
2012-06-09 16:23:28 +00:00
|
|
|
namespace OpenSubdiv {
|
|
|
|
namespace OPENSUBDIV_VERSION {
|
|
|
|
|
2012-06-09 00:06:35 +00:00
|
|
|
class OsdVertex {
|
|
|
|
public:
|
|
|
|
OsdVertex() {}
|
|
|
|
OsdVertex(int index) {}
|
|
|
|
OsdVertex(const OsdVertex &src) {}
|
|
|
|
|
|
|
|
void AddWithWeight(const OsdVertex & i, float weight, void * = 0) {}
|
|
|
|
void AddVaryingWithWeight(const OsdVertex & i, float weight, void * = 0) {}
|
|
|
|
void Clear(void * = 0) {}
|
|
|
|
};
|
|
|
|
|
2012-06-09 16:23:28 +00:00
|
|
|
} // end namespace OPENSUBDIV_VERSION
|
|
|
|
using namespace OPENSUBDIV_VERSION;
|
|
|
|
|
|
|
|
} // end namespace OpenSubdiv
|
|
|
|
|
2012-06-09 00:06:35 +00:00
|
|
|
#endif // GSD_VERTEX_H
|