summaryrefslogtreecommitdiff
path: root/vertex.hpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-01-17 19:36:30 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2021-01-17 22:16:48 +0000
commit0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c (patch)
tree68a80976a247836bbb1eecc835af437e3489fbb7 /vertex.hpp
parentFirst cut modernizing and sanitizing (diff)
downloadilt-0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c.tar.bz2
ilt-0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c.tar.xz
ilt-0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c.zip
Big reshuffle
Fixes code quality warnings now picked up.
Diffstat (limited to 'vertex.hpp')
-rw-r--r--vertex.hpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/vertex.hpp b/vertex.hpp
deleted file mode 100644
index 3f6514b..0000000
--- a/vertex.hpp
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef VERTEX_H
-#define VERTEX_H
-
-#include <glm/glm.hpp>
-
-class Vertex {
-public:
- Vertex(glm::vec3 pos, glm::vec2 texCoord, glm::vec3 normal) :
- pos {std::move(pos)}, texCoord {std::move(texCoord)}, normal {std::move(normal)}
- {
- }
-
- 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;
-};
-#endif