diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-11-17 13:05:22 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-11-17 13:05:22 +0100 |
commit | 3dc7f970305480bf5c4f60c21416adfc0b8dc958 (patch) | |
tree | b48b3d4cc153f5c88c43194eaf62475e5afe7d00 /vertex_data.cpp | |
download | engine-3dc7f970305480bf5c4f60c21416adfc0b8dc958.tar.gz |
initial commit
Diffstat (limited to 'vertex_data.cpp')
-rw-r--r-- | vertex_data.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vertex_data.cpp b/vertex_data.cpp new file mode 100644 index 0000000..23c8b03 --- /dev/null +++ b/vertex_data.cpp @@ -0,0 +1,12 @@ +#include "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() { +} |