Cheetah Software  1.0
obj_loader.h
Go to the documentation of this file.
1 
5 #ifndef OBJLOADER_H
6 #define OBJLOADER_H
7 
8 #include <string>
9 #include <vector>
10 
11 void load_obj_file(std::string fileName, std::vector<float>& positions,
12  std::vector<float>& normals);
13 
14 #endif // OBJLOADER_H
void load_obj_file(std::string fileName, std::vector< float > &positions, std::vector< float > &normals)
Definition: obj_loader.cpp:19