From 9354c35431ce9f544eb9b37c1bb6d225038294f4 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 25 Jan 2021 01:09:25 +0000 Subject: Simplify vertex interface --- gfx/models/vertex.hpp | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'gfx/models/vertex.hpp') diff --git a/gfx/models/vertex.hpp b/gfx/models/vertex.hpp index 4ab6024..3d7f933 100644 --- a/gfx/models/vertex.hpp +++ b/gfx/models/vertex.hpp @@ -10,25 +10,6 @@ public: { } - glm::vec3 & - GetPos() - { - return pos; - } - - glm::vec2 & - GetTexCoord() - { - return texCoord; - } - - glm::vec3 & - GetNormal() - { - return normal; - } - -private: glm::vec3 pos; glm::vec2 texCoord; glm::vec3 normal; -- cgit v1.2.3