From e4d073947d09634e95325ddaf8f1615f85e85901 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 15 Feb 2020 01:36:41 +0100 Subject: Load texture in obj model loader.. broken --- include/Triangle.hpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'include/Triangle.hpp') diff --git a/include/Triangle.hpp b/include/Triangle.hpp index 5caff05..393c45a 100644 --- a/include/Triangle.hpp +++ b/include/Triangle.hpp @@ -5,8 +5,6 @@ namespace amalgine { class Triangle2D { public: - Triangle2D(const Vertex2D &_p1, const Vertex2D &_p2, const Vertex2D &_p3) : p1(_p1), p2(_p2), p3(_p3) {} - Vertex2D p1; Vertex2D p2; Vertex2D p3; @@ -14,8 +12,6 @@ namespace amalgine { class Triangle3D { public: - Triangle3D(const Vertex3D &_p1, const Vertex3D &_p2, const Vertex3D &_p3) : p1(_p1), p2(_p2), p3(_p3) {} - Vertex3D p1; Vertex3D p2; Vertex3D p3; -- cgit v1.2.3