-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathobjParser.h
30 lines (23 loc) · 895 Bytes
/
objParser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef OBJPARSER_H
#define OBJPARSER_H
// ===============================
// AUTHOR : Angel Ortiz (angelo12 AT vt DOT edu)
// CREATE DATE : 2018-07-14
// PURPOSE : Read .OBJ files and load the data into a mesh
// ===============================
//Headers
#include <fstream>
#include <sstream>
#include "mesh.h"
//Just a namespace for functions related to loading data from wavefront OBJ files
namespace OBJ{
//Assumes that the path given is valid
Mesh& buildMeshFromFile(Mesh &mesh, std::string path);
//Checks if the path actually contains a valid file
bool fileExists(std::string &path);
//Get vertices, normals and all index data into the mesh object
void loadFileData(Mesh &mesh, std::ifstream &file);
//Simple string splitting method using a single char delimeter
std::vector<std::string> splitStr(std::string &str, char delim);
}
#endif