blob: e35d65a07eac3e5c398704c13e894e30875728a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef VERTEX_DATA_H
#define 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 // VERTEX_DATA_H
|