From 0a2da4f82435a49212e276d9d603e84ac298246d Mon Sep 17 00:00:00 2001 From: Mateja Date: Sun, 27 Dec 2020 00:09:34 +0100 Subject: Reorganize entire project. --- source/ObjModel.h | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 source/ObjModel.h (limited to 'source/ObjModel.h') diff --git a/source/ObjModel.h b/source/ObjModel.h deleted file mode 100644 index 9f66867..0000000 --- a/source/ObjModel.h +++ /dev/null @@ -1,31 +0,0 @@ -#include"Vertice.h" -#include"Bitmap.h" -#include -#include -#include -#include -#include - -struct Triangle { - int p[3][3]; -}; - -struct Texture_Coordinates { - float u, v; -}; - -class ObjModel -{ -public: - std::vector vertices; - std::vector uvcoo; - std::vector normals; - std::vector faces; - ObjModel(); - ObjModel(std::string fileName); - ObjModel(const ObjModel& a); - ObjModel multiplyMatrix(Matrix4f& a); - void divideW(); - void screenspace(int width, int height); -}; - -- cgit v1.2.3