diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-11-19 23:25:06 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-11-19 23:25:06 +0100 |
commit | c5697e42a76142c339806e1c0bc7ed15e3ace548 (patch) | |
tree | a8201bde9a3a1c4e6cf956348e5d3f7fc873221f /vertex_data.cpp | |
parent | 5b8a65b15a37d9c1c97fb39db93f1b40db628d70 (diff) | |
download | engine-c5697e42a76142c339806e1c0bc7ed15e3ace548.tar.gz |
started switching to autotools
Diffstat (limited to 'vertex_data.cpp')
-rw-r--r-- | vertex_data.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/vertex_data.cpp b/vertex_data.cpp deleted file mode 100644 index 23c8b03..0000000 --- a/vertex_data.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#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() { -} |