aboutsummaryrefslogtreecommitdiff
path: root/vertex.h
diff options
context:
space:
mode:
authorvimene <vincent.menegaux@gmail.com>2023-11-19 23:25:06 +0100
committervimene <vincent.menegaux@gmail.com>2023-11-19 23:25:06 +0100
commitc5697e42a76142c339806e1c0bc7ed15e3ace548 (patch)
treea8201bde9a3a1c4e6cf956348e5d3f7fc873221f /vertex.h
parent5b8a65b15a37d9c1c97fb39db93f1b40db628d70 (diff)
downloadengine-c5697e42a76142c339806e1c0bc7ed15e3ace548.tar.gz
started switching to autotools
Diffstat (limited to 'vertex.h')
-rw-r--r--vertex.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/vertex.h b/vertex.h
deleted file mode 100644
index 92b7dcb..0000000
--- a/vertex.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef VERTEX_H
-#define VERTEX_H
-
-#include "math_vector.h"
-#include "vertex_data.h"
-
-class Vertex3 {
- public:
- MathVector3 point;
- VertexData data;
-
- Vertex3(MathVector3 point, VertexData data);
-};
-
-class Vertex4 {
- public:
- MathVector4 point;
- VertexData data;
-
- Vertex4(MathVector4 point, VertexData data);
- Vertex4(Vertex3 vertex);
- Vertex3 div_by_w() const;
-};
-
-#endif // VERTEX_H