aboutsummaryrefslogtreecommitdiff
path: root/src/o3d/vertex_data.cpp
diff options
context:
space:
mode:
authorvimene <vincent.menegaux@gmail.com>2023-11-26 17:58:30 +0100
committervimene <vincent.menegaux@gmail.com>2023-11-26 17:58:30 +0100
commite730e8bdc69ef89dfa28d2606d260cb8b72f4740 (patch)
treec219050793df6d1d777e94ea3c887027cde7451e /src/o3d/vertex_data.cpp
parent5a1d67d1797a3db874e44500e13237d676843185 (diff)
downloadengine-e730e8bdc69ef89dfa28d2606d260cb8b72f4740.tar.gz
added scenes, camera and meshes
Diffstat (limited to 'src/o3d/vertex_data.cpp')
-rw-r--r--src/o3d/vertex_data.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/o3d/vertex_data.cpp b/src/o3d/vertex_data.cpp
index 0957742..4e0ab04 100644
--- a/src/o3d/vertex_data.cpp
+++ b/src/o3d/vertex_data.cpp
@@ -3,10 +3,18 @@
using namespace engine::o3d;
VertexData VertexData::lerp(VertexData& vd1, VertexData& vd2, float s) {
+ (void) vd1;
+ (void) vd2;
+ (void) s;
return {};
}
VertexData VertexData::bilerp(VertexData& vd1, VertexData& vd2, VertexData& vd3, float s, float t) {
+ (void) vd1;
+ (void) vd2;
+ (void) vd3;
+ (void) s;
+ (void) t;
return {};
}