blob: 0000dda37cb611a5376118a706e57530d61b5359 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef O3D_VERTEX_DATA_H
#define O3D_VERTEX_DATA_H
class VertexData {
public:
static VertexData lerp(VertexData& vd1, VertexData& vd2, float s);
static VertexData bilerp(VertexData& vd1, VertexData& vd2, VertexData& vd3, float s, float t);
VertexData();
};
#endif // O3D_VERTEX_DATA_H
|