From 3b289a2f75b6e96735519a65d93b6babd1b1759f Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 2 Oct 2022 04:34:18 +0200 Subject: Expand Vector and Matrix classes --- src/Mesh.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Mesh.hpp') diff --git a/src/Mesh.hpp b/src/Mesh.hpp index acf4f3b..a6d80d3 100644 --- a/src/Mesh.hpp +++ b/src/Mesh.hpp @@ -9,12 +9,12 @@ namespace MC { class Mesh { public: - Mesh(std::vector positions) : m_positions(std::move(positions)) {}; + Mesh(std::vector> positions) : m_positions(std::move(positions)) {}; std::size_t size(); float* flat(); private: - std::vector m_positions; + std::vector> m_positions; }; } \ No newline at end of file -- cgit 1.4.1