Guest User

Untitled

a guest
Jan 22nd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.51 KB | None | 0 0
  1. Model::Model(const std::vector<float> arg_temp_vertices, const std::vector<float> arg_temp_uv_coords, const std::vector<float> arg_temp_normals,
  2.              const std::vector<int> arg_vertex_indices, const std::vector<int> arg_uv_indices, const std::vector<int> arg_normal_indices)
  3.     :temp_vertices(arg_temp_vertices),
  4.      temp_uv_coords(arg_temp_uv_coords),
  5.      temp_normals(arg_temp_normals),
  6.      vertex_indices(arg_vertex_indices),
  7.      uv_indices(arg_uv_indices),
  8.      normal_indices(arg_normal_indices)
  9. {}
Add Comment
Please, Sign In to add comment