My Project
objLoader.h
Go to the documentation of this file.
1 #ifndef OBJLOADER_H
2 #define OBJLOADER_H
3 #include <set>
4 #include <vector>
5 #include "basicComponents.h"
6 #include "figures.h"
7 
8 
11  const char * path
12 // std::vector<Vertice> & out_vertices,
13 // std::vector<std::vector<unsigned int>> & faces_vertices
14  );
15 
16 bool get_edges3D(
17  std::vector<Vertice> & out_vertices,
18  std::vector<std::vector<unsigned int> > & faces_vertices,
19  // int plane, //0-XY, 1-YZ, 2-XZ
20  std::set<Edge>& edgeSet
21  );
22 
23 #endif
bool get_edges3D(std::vector< Vertice > &out_vertices, std::vector< std::vector< unsigned int > > &faces_vertices, std::set< Edge > &edgeSet)
Definition: objLoader.cpp:138
Fig3D loadOBJ(const char *path)
Function to load OBJ file and save its contents into a 3d figure object.
Definition: objLoader.cpp:17
Definition: figures.h:11