blob: dda881b2055816d12d0b866a4c64bf3c47c81efe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef O3D_VERTEX_DATA_H
#define O3D_VERTEX_DATA_H
namespace engine::o3d {
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
|