From 064022b153daf8bb9b47036037eebec92cc57ec7 Mon Sep 17 00:00:00 2001 From: Andrew Guschin Date: Sat, 28 Nov 2020 20:55:47 +0400 Subject: =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BB=20Figu?= =?UTF-8?q?re.h?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- task06/Guschin/Figure.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'task06/Guschin') diff --git a/task06/Guschin/Figure.h b/task06/Guschin/Figure.h index cf2a63e..4f2400c 100644 --- a/task06/Guschin/Figure.h +++ b/task06/Guschin/Figure.h @@ -5,11 +5,11 @@ class path { public: - std::vector vertices; + std::vector vertices; vec3 color; float thickness; - path(std::vector verts, vec3 col, float thickn) + path(std::vector verts, vec3 col, float thickn) { vertices = verts; color = col; @@ -20,8 +20,8 @@ public: class model { public: std::vector figure; - mat3 modelM; - model(std::vector fig, mat3 mat) { + mat4 modelM; + model(std::vector fig, mat4 mat) { figure = fig; modelM = mat; } }; \ No newline at end of file -- cgit v1.2.3