-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mesh.h
209 lines (160 loc) · 4.38 KB
/
Mesh.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#ifndef MESH_H
#define MESH_H
#include<vector>
#include<map>
#include<GL/glew.h>
#include<glm/glm.hpp>
#include<glm/gtc/matrix_transform.hpp>
#include<glm/detail/type_vec.hpp>
#include"Shader.h"
namespace MeshLib
{
//半边结构
//Half-edge structure
class HE_vert;
class HE_face;
class HE_edge;
template<class Type>
struct less : public binary_function <Type, Type, bool>
{
bool operator()(
const Type* _Left,
const Type* _Right
) const
{
return (_Left->x - _Right->x<0) && (_Left->y - _Right->y<0) && (_Left->z - _Right->z<0) ? true : false;
};
};
class HE_vert
{
public:
glm::vec3 pos;
HE_edge* edge;
glm::vec3 normal;
GLint id;
GLint degree;
GLboolean tag;
GLfloat gray;
public:
HE_vert(glm::vec3 &v) :pos(v), edge(0), id(-1), degree(0), tag(GL_FALSE)
{
}
};
class HE_edge
{
public:
HE_vert* vert;
HE_edge* pair;
HE_face* face;
HE_edge* next;
HE_edge* prev;
GLint id;
GLboolean tag;
public:
HE_edge() :vert(0), pair(0), face(0), next(0), prev(0), id(-1), tag(GL_FALSE)
{}
};
class HE_face
{
public:
HE_edge* edge;
int valence;
glm::vec3 normal;
GLint id;
GLboolean tag;
public:
HE_face() :edge(0), id(-1), tag(GL_FALSE)
{}
glm::vec3 GetCentroid();
};
class Mesh
{
public:
typedef std::vector<HE_vert*> VERTEX_LIST;
typedef std::vector<HE_edge*> EDGE_LIST;
typedef std::vector<HE_face*> FACE_LIST;
typedef VERTEX_LIST* PTR_VERTEX_LIST;
typedef EDGE_LIST* PTR_EDGE_LIST;
typedef FACE_LIST* PTR_FACE_LIST;
typedef VERTEX_LIST::iterator VERTEX_ITER;
typedef FACE_LIST::iterator FACE_ITER;
typedef EDGE_LIST::iterator EDGE_ITER;
typedef VERTEX_LIST::reverse_iterator VERTEX_RITER;
typedef FACE_LIST::reverse_iterator FACE_RITER;
typedef EDGE_LIST::reverse_iterator EDGE_RITER;
typedef std::pair<HE_vert*, HE_vert*> PAIR_VERTEX;
PTR_VERTEX_LIST vertices_list;
PTR_EDGE_LIST edges_list;
PTR_FACE_LIST faces_list;
std::map<PAIR_VERTEX, HE_edge*> m_edgemap;
std::map<glm::vec3*, HE_vert*, less<glm::detail::tvec3<GLfloat, glm::precision::defaultp>>> m_vertmap;
std::vector<GLfloat> vertices;
std::vector<GLuint> indices;
GLuint VAO, VBO, EBO;
public:
Mesh();
~Mesh();
HE_vert* insert_vertex(glm::vec3 &v);
HE_face* insert_face(VERTEX_LIST &vec_hv);
HE_edge* insert_edge(HE_vert* vstart, HE_vert* vend);
GLboolean load_obj(const char* fins);
void compute_faces_list_normal();
void compute_perface_normal(HE_face* hf);
void compute_vertices_list_normal();
void compute_pervertex_normal(HE_vert* hv);
void compute_all_normal();
glm::vec3 update();
glm::vec3 getCenter();
void translate(glm::vec3 pos);
void scale(GLfloat size);
inline void getBorderVerts(HE_vert* vstart,HE_vert* vend,glm::vec3 &pos1,glm::vec3 &pos2)
{
glm::vec3 mpos = (vstart->pos + vend->pos) / 2.0f;
pos1 = (mpos + vstart->pos) / 2.0f;
pos2 = (mpos + vend->pos) / 2.0f;
};
//根据数学方程重建3D图形
void createMeshByFunction(const glm::vec3& point, const glm::vec3& cube, const GLfloat& length, void function(GLfloat& x, GLfloat& y, GLfloat& z, GLfloat& result));
//the marchingcube method without 256 solutions
void marchingcube(HE_vert* vert, HE_edge* edge, PTR_VERTEX_LIST vlist);
//转换到openGL渲染用的顶点数据
void update_vertices();
//转换到openGL渲染用的索引数据
void update_indices();
//将顶点数据和索引数据绑定到缓冲对象
void setupMesh();
//绘制图形
void DrawModel(Shader shader);
//绘制边
void DrawLine(Shader shader);
bool isborder(HE_vert* hv);
bool isFaceBorder(HE_edge* edge);
void removeVolid();
void insertNext(HE_edge* edge);
inline int get_num_of_vertices_list()
{
return vertices_list ? (int)vertices_list->size() : 0;
}
inline int get_num_of_faces_list()
{
return faces_list ? (int)faces_list->size() : 0;
}
inline int get_num_of_edges_list()
{
return edges_list ? (int)edges_list->size() : 0;
}
inline HE_vert* get_vertex(int id) //get a vertex by id
{
return id >= get_num_of_vertices_list() || id<0 ? NULL : (*vertices_list)[id];
}
inline HE_edge* get_edge(int id) //get an edge by id
{
return id >= get_num_of_edges_list() || id<0 ? NULL : (*edges_list)[id];
}
inline HE_face* get_face(int id) //get a face by id
{
return id >= get_num_of_faces_list() || id<0 ? NULL : (*faces_list)[id];
}
};
}
#endif