TDME2 1.9.121
WFObjWriter.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
8#include <tdme/math/Vector3.h>
9
10using std::string;
11using std::vector;
12
14
15/**
16 * Wavefront object model writer
17 * @author andreas.drewke
18 * @version $Id$
19 */
21{
22private:
23 vector<Vector3> vertices;
24 vector<Vector3> normals;
25 vector<vector<array<int, 2>>> faces;
26public:
27 /**
28 * Public constructor
29 */
31
32 /**
33 * Adds a vertex
34 * @param vertex vertex
35 */
36 void addVertex(const Vector3& vertex);
37
38 /**
39 * Adds a face
40 * @param faceVertexIndices face vertex indices
41 */
42 void addFace(vector<int> faceVertexIndices);
43
44 /**
45 * Writes this wave front object file
46 * @param pathName path name
47 * @param fileName file name
48 * @return model
49 * @throws tdme::os::filesystem::FileSystemException
50 */
51 void write(const string& pathName, const string& fileName);
52
53};
Wavefront object model writer.
Definition: WFObjWriter.h:21
void write(const string &pathName, const string &fileName)
Writes this wave front object file.
Definition: WFObjWriter.cpp:59
void addVertex(const Vector3 &vertex)
Adds a vertex.
Definition: WFObjWriter.cpp:30
vector< vector< array< int, 2 > > > faces
Definition: WFObjWriter.h:25
void addFace(vector< int > faceVertexIndices)
Adds a face.
Definition: WFObjWriter.cpp:34
3D vector 3 class
Definition: Vector3.h:22