aboutsummaryrefslogtreecommitdiff
path: root/source/ObjModel.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/ObjModel.h')
-rw-r--r--source/ObjModel.h31
1 files changed, 0 insertions, 31 deletions
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<vector>
-#include<string>
-#include<sstream>
-#include<fstream>
-#include<exception>
-
-struct Triangle {
- int p[3][3];
-};
-
-struct Texture_Coordinates {
- float u, v;
-};
-
-class ObjModel
-{
-public:
- std::vector<Vertice> vertices;
- std::vector<Texture_Coordinates> uvcoo;
- std::vector<Vector4f> normals;
- std::vector<Triangle> faces;
- ObjModel();
- ObjModel(std::string fileName);
- ObjModel(const ObjModel& a);
- ObjModel multiplyMatrix(Matrix4f& a);
- void divideW();
- void screenspace(int width, int height);
-};
-