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
use std::fmt;
use pretty_assertions::{assert_eq, assert_ne};
use crate::stores::{Handle, HandleWrapper};
use super::{Curve, GlobalCurve, GlobalVertex, Vertex};
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct HalfEdge {
vertices: [Vertex; 2],
global_form: GlobalEdge,
}
impl HalfEdge {
pub fn new([a, b]: [Vertex; 2], global_form: GlobalEdge) -> Self {
assert_eq!(
a.curve().id(),
b.curve().id(),
"An edge's vertices must be defined in the same curve",
);
let curve = a.curve();
assert_eq!(
curve.global_form().id(),
global_form.curve().id(),
"The global form of a half-edge's curve must match the curve of \
the half-edge's global form"
);
assert_eq!(
&VerticesInNormalizedOrder::new(
[&a, &b].map(|vertex| vertex.global_form().clone())
),
global_form.vertices(),
"The global forms of a half-edge's vertices must match the \
vertices of the half-edge's global form"
);
assert_ne!(
a.position(),
b.position(),
"Vertices of an edge must not be coincident on curve"
);
Self {
vertices: [a, b],
global_form,
}
}
pub fn curve(&self) -> &Handle<Curve> {
let [vertex, _] = self.vertices();
vertex.curve()
}
pub fn vertices(&self) -> &[Vertex; 2] {
&self.vertices
}
pub fn global_form(&self) -> &GlobalEdge {
&self.global_form
}
}
impl fmt::Display for HalfEdge {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let [a, b] = self.vertices().clone().map(|vertex| vertex.position());
write!(f, "edge from {:?} to {:?}", a, b)?;
write!(f, " on {:?}", self.curve().global_form())?;
Ok(())
}
}
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct GlobalEdge {
curve: HandleWrapper<GlobalCurve>,
vertices: VerticesInNormalizedOrder,
}
impl GlobalEdge {
pub fn new(
curve: impl Into<HandleWrapper<GlobalCurve>>,
vertices: [Handle<GlobalVertex>; 2],
) -> Self {
let curve = curve.into();
let vertices = VerticesInNormalizedOrder::new(vertices);
Self { curve, vertices }
}
pub fn curve(&self) -> &Handle<GlobalCurve> {
&self.curve
}
pub fn vertices(&self) -> &VerticesInNormalizedOrder {
&self.vertices
}
}
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct VerticesInNormalizedOrder([Handle<GlobalVertex>; 2]);
impl VerticesInNormalizedOrder {
pub fn new([a, b]: [Handle<GlobalVertex>; 2]) -> Self {
let vertices = if a < b { [a, b] } else { [b, a] };
Self(vertices)
}
pub fn access_in_normalized_order(&self) -> &[Handle<GlobalVertex>; 2] {
&self.0
}
}
#[cfg(test)]
mod tests {
use pretty_assertions::assert_eq;
use crate::{objects::Surface, partial::HasPartial, stores::Stores};
use super::HalfEdge;
#[test]
fn global_edge_equality() {
let stores = Stores::new();
let surface = stores.surfaces.insert(Surface::xy_plane());
let a = [0., 0.];
let b = [1., 0.];
let a_to_b = HalfEdge::partial()
.with_surface(Some(surface.clone()))
.as_line_segment_from_points([a, b])
.build(&stores);
let b_to_a = HalfEdge::partial()
.with_surface(Some(surface))
.as_line_segment_from_points([b, a])
.build(&stores);
assert_eq!(a_to_b.global_form(), b_to_a.global_form());
}
}