aboutsummaryrefslogtreecommitdiff
path: root/source/Vertice.h
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2020-12-27 00:09:34 +0100
committerMateja <mail@matejamaric.com>2020-12-27 00:09:34 +0100
commit0a2da4f82435a49212e276d9d603e84ac298246d (patch)
tree1fea3b94712df18d1229f4f3492b540c90f6f302 /source/Vertice.h
parenta84debff887c3e3d930665db140b7a287d3879d4 (diff)
downloaderender-0a2da4f82435a49212e276d9d603e84ac298246d.tar.gz
erender-0a2da4f82435a49212e276d9d603e84ac298246d.zip
Reorganize entire project.
Diffstat (limited to 'source/Vertice.h')
-rw-r--r--source/Vertice.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/Vertice.h b/source/Vertice.h
deleted file mode 100644
index c4a591b..0000000
--- a/source/Vertice.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#include"Vector4f.h"
-class Vertice : public Vector4f
-{
-public:
- float u, v;
- Vertice();
- Vertice(float x_, float y_, float z_, float u_, float v_);
- Vertice(float x_, float y_, float z_, float w_, float u_, float v_);
- void screenspace(int screenWidth, int screenHeight);
- Vertice multiplyMatrix(const Matrix4f& a);
- Vertice& operator= (const Vector4f& a);
- Vertice divideW();
-};
-