diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-11-25 17:05:01 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-11-25 17:05:01 -0700 |
commit | f4a7739a40c095e0c837d78d00f13a1ef47d3a11 (patch) | |
tree | 901a02ea8cf1cab8344bf3d6310ae4812f7062f4 /inc/mesh.hpp | |
parent | ebc517c800a90f6f0ed157e5c3bd7c3bd18165b5 (diff) | |
download | gbarubik-f4a7739a40c095e0c837d78d00f13a1ef47d3a11.tar.gz gbarubik-f4a7739a40c095e0c837d78d00f13a1ef47d3a11.zip |
cube foo init
Diffstat (limited to 'inc/mesh.hpp')
-rw-r--r-- | inc/mesh.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/mesh.hpp b/inc/mesh.hpp index db465fb..91fa500 100644 --- a/inc/mesh.hpp +++ b/inc/mesh.hpp @@ -14,9 +14,9 @@ typedef struct TRIANGLE { } TRIANGLE; class Mesh { -protected: - usu::vector<VECTOR> m_vertices; - usu::vector<TRIANGLE> m_triangles; +public: + usu::vector<VECTOR> vertices; + usu::vector<TRIANGLE> triangles; }; #endif // MESH_HPP |