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
use prelude::*;
use utils::safe_append_at;
#[derive (Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
struct Edge {
tail: VId,
twin: Option<EId>
}
#[derive (Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct HalfEdge {
edges: Vec<Edge>,
vertices_start_edges: Vec<Vec<EId>>
}
impl HalfEdge {
pub fn new<T, M>(mesh: &M) -> Self where
M: IsMesh<T, Face3> {
let n_faces = mesh.num_faces();
let mut edges = Vec::with_capacity(3 * n_faces);
let mut vertices_start_edges = Vec::new();
for i in 0..n_faces {
match mesh.face_vertex_ids(FId{val: i}) {
Err(_) => {},
Ok(face) => {
edges.push(Edge{tail: face.a, twin: None});
edges.push(Edge{tail: face.b, twin: None});
edges.push(Edge{tail: face.c, twin: None});
safe_append_at(&mut vertices_start_edges, face.a.val, EId{val: i*3 + 0});
safe_append_at(&mut vertices_start_edges, face.b.val, EId{val: i*3 + 1});
safe_append_at(&mut vertices_start_edges, face.c.val, EId{val: i*3 + 2});
}
}
}
let mut result = HalfEdge{edges: edges , vertices_start_edges: vertices_start_edges };
for i in 0..result.edges.len() {
let _ = result.next(EId{val: i})
.and_then(|next_id| result.edges_originating(result.edges[next_id.val].tail))
.map(|originating_ids| for originating_id in originating_ids {
let _ = result.next(originating_id)
.map(|candidate_id| if result.edges[candidate_id.val].tail == result.edges[i].tail {
result.edges[i].twin = Some(candidate_id)
});
});
}
result
}
pub fn tail(&self, id: EId) -> Result<VId> {
self.ensure_edge_id(id)?;
Ok(self.edges[id.val].tail)
}
pub fn face(&self, id: EId) -> Result<FId> {
self.ensure_edge_id(id)?;
Ok(FId{val: id.val / 3})
}
pub fn twin(&self, id: EId) -> Result<Option<EId>> {
self.ensure_edge_id(id)?;
Ok(self.edges[id.val].twin.clone())
}
pub fn next(&self, id: EId) -> Result<EId> {
self.ensure_edge_id(id)?;
if Self::last_in_face(id) {
return Ok(EId{val: id.val - 2});
}
Ok(EId{val: id.val + 1})
}
pub fn prev(&self, id: EId) -> Result<EId> {
self.ensure_edge_id(id)?;
if Self::first_in_face(id) {
return Ok(EId{val: id.val + 2});
}
Ok(EId{val: id.val - 1})
}
pub fn edges_originating(&self, id: VId) -> Result<Vec<EId>> {
self.ensure_vertex_id(id)?;
Ok(self.vertices_start_edges[id.val].clone())
}
pub fn edges_ending(&self, id: VId) -> Result<Vec<EId>> {
let originatings = self.edges_originating(id)?;
let mut result = Vec::with_capacity(originatings.len());
for edge in originatings {
match self.prev(edge) {
Err(_) => {},
Ok(id) => result.push(id)
}
}
Ok(result)
}
pub fn edges_all(&self, id: VId) -> Result<Vec<EId>> {
let originatings = self.edges_originating(id)?;
let mut result = Vec::with_capacity(originatings.len());
for edge in originatings {
result.push(edge);
match self.prev(edge) {
Err(_) => {},
Ok(id) => result.push(id)
}
}
Ok(result)
}
pub fn faces(&self, id: VId) -> Result<Vec<FId>> {
let originatings = self.edges_originating(id)?;
let mut result = Vec::with_capacity(originatings.len());
for edge in originatings {
match self.face(edge) {
Err(_) => {}
Ok(id) => result.push(id)
}
}
Ok(result)
}
fn first_in_face(id: EId) -> bool {
id.val % 3 == 0
}
fn last_in_face(id: EId) -> bool {
id.val % 3 == 2
}
pub fn ensure_edge_id(&self, id: EId) -> Result<()> {
if id.val >= self.edges.len() {
return Err(ErrorKind::IncorrectEdgeID);
}
Ok(())
}
pub fn ensure_vertex_id(&self, id: VId) -> Result<()> {
if id.val >= self.vertices_start_edges.len() {
return Err(ErrorKind::IncorrectVertexID);
}
Ok(())
}
}