-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhalf_edge_mesh.hpp
113 lines (84 loc) · 2.76 KB
/
half_edge_mesh.hpp
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
#pragma once
#include <list>
#include <vector>
#include "vec.hpp"
//
// This is a half-edge mesh implementation based on STL iterators.
//
class Edge;
class HalfEdge;
class Vertex;
class Face;
typedef std::list<HalfEdge>::iterator HalfEdgeIter;
typedef std::list<Edge>::iterator EdgeIter;
typedef std::list<Vertex>::iterator VertexIter;
typedef std::list<Face>::iterator FaceIter;
class Edge {
public:
// one of the two half edges this edge is split into.
HalfEdgeIter halfEdge;
float GetLength();
};
class HalfEdge {
public:
// the vertex at the root of this half edge.
VertexIter vertex;
// the half edge opposite to this half edge.
// this half will be in an opposite face.
// and this will be null if this half edge is part of the boundary.
HalfEdgeIter twin;
// the half edge that this half edge is pointing at, in the current face.
HalfEdgeIter next;
// the face this half edge belongs to.
FaceIter face;
// edge that contains this half edge.
EdgeIter edge;
float GetLength();
};
class Vertex {
public:
// one of the half edges that is emanating from this vertex.
HalfEdgeIter halfEdge;
vec3 p;
int id; // for convenience, we associate an id with every vertex.
Vertex(const vec3& p) {
this->p = p;
}
};
class Face {
public:
// The face that contains this half edge.
HalfEdgeIter halfEdge;
};
inline bool operator<( const HalfEdgeIter& i, const HalfEdgeIter& j ) { return &*i < &*j; }
inline bool operator<( const VertexIter& i, const VertexIter& j ) { return &*i < &*j; }
inline bool operator<( const FaceIter& i, const FaceIter& j ) { return &*i < &*j; }
class HalfEdgeMesh {
public:
HalfEdgeMesh(
const std::vector<vec3>& vertices,
const std::vector<Tri>& faces);
// Convert a half edge mesh back to a polygon-soup mesh.
void ToMesh(
std::vector<vec3>& vertices,
std::vector<Tri>& faces);
bool IsBoundary(HalfEdgeIter heit);
bool IsBoundary(EdgeIter eit);
HalfEdgeIter GetNextBoundary(HalfEdgeIter heit);
FaceIter BeginFaces() {return faces.begin();}
FaceIter EndFaces() {return faces.end();}
VertexIter BeginVertices() {return vertices.begin();}
VertexIter EndVertices() {return vertices.end();}
HalfEdgeIter BeginHalfEdges() {return halfEdges.begin();}
HalfEdgeIter EndHalfEdges() {return halfEdges.end();}
EdgeIter BeginEdges() {return edges.begin();}
EdgeIter EndEdges() {return edges.end();}
size_t NumVertices() { return vertices.size();}
size_t NumEdges() { return edges.size();}
size_t NumHalfEdges() { return halfEdges.size();}
private:
std::list<HalfEdge> halfEdges;
std::list<Edge> edges;
std::list<Vertex> vertices;
std::list<Face> faces;
};