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, 31 insertions, 0 deletions
diff --git a/source/ObjModel.h b/source/ObjModel.h
new file mode 100644
index 0000000..9f66867
--- /dev/null
+++ b/source/ObjModel.h
@@ -0,0 +1,31 @@
+#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);
+};
+