aboutsummaryrefslogtreecommitdiff
path: root/src/o3d/vertex_data.cpp
blob: 095774278a485e5e5e2f9788e8693580848512b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "o3d/vertex_data.h"

using namespace engine::o3d;

VertexData VertexData::lerp(VertexData& vd1, VertexData& vd2, float s) {
    return {};
}

VertexData VertexData::bilerp(VertexData& vd1, VertexData& vd2, VertexData& vd3, float s, float t) {
    return {};
}

VertexData::VertexData() {
}