#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; } };