mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2025-01-07 23:40:12 +00:00
26 lines
553 B
C++
26 lines
553 B
C++
#ifndef GSD_VERTEX_H
|
|
#define GSD_VERTEX_H
|
|
|
|
#include "../version.h"
|
|
|
|
namespace OpenSubdiv {
|
|
namespace OPENSUBDIV_VERSION {
|
|
|
|
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) {}
|
|
};
|
|
|
|
} // end namespace OPENSUBDIV_VERSION
|
|
using namespace OPENSUBDIV_VERSION;
|
|
|
|
} // end namespace OpenSubdiv
|
|
|
|
#endif // GSD_VERTEX_H
|