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

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() {
}