4 MeshVK::MeshVK(const MeshVK &mesh)
6 indices = mesh.indices;
7 vertices = mesh.vertices;
8 normals = mesh.normals;
11 MeshVK &MeshVK::operator=(const MeshVK &mesh)
16 /* what the copy constructor does */
17 indices = mesh.indices;
18 vertices = mesh.vertices;
19 normals = mesh.normals;
30 void MeshVK::update_vertex_data()