#pragma once #include "Matrix.h" #include class path { public: std::vector vertices; vec3 color; float thickness; path(std::vector verts, vec3 col, float thickn) { vertices = verts; color = col; thickness = thickn; } }; class model { public: std::vector figure; mat4 modelM; model(std::vector fig, mat4 mat) { figure = fig; modelM = mat; } };