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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
use fj_math::{Point, Scalar};
use crate::{
objects::{GlobalCurve, GlobalEdge, GlobalVertex, HalfEdge, Surface},
storage::Handle,
};
use super::{Validate, ValidationConfig, ValidationError};
impl Validate for HalfEdge {
fn validate_with_config(
&self,
config: &ValidationConfig,
errors: &mut Vec<ValidationError>,
) {
HalfEdgeValidationError::check_global_curve_identity(self, errors);
HalfEdgeValidationError::check_global_vertex_identity(self, errors);
HalfEdgeValidationError::check_surface_identity(self, errors);
HalfEdgeValidationError::check_vertex_positions(self, config, errors);
}
}
impl Validate for GlobalEdge {
fn validate_with_config(
&self,
_: &ValidationConfig,
_: &mut Vec<ValidationError>,
) {
}
}
#[derive(Clone, Debug, thiserror::Error)]
pub enum HalfEdgeValidationError {
#[error(
"Global form of `HalfEdge`'s `Curve` does not match `GlobalCurve` of \n\
the `HalfEdge`'s `GlobalEdge`\n\
- `GlobalCurve` from `Curve`: {global_curve_from_curve:#?}\n\
- `GlobalCurve` from `GlobalEdge`: {global_curve_from_global_form:#?}\n\
- `HalfEdge`: {half_edge:#?}",
)]
GlobalCurveMismatch {
global_curve_from_curve: Handle<GlobalCurve>,
global_curve_from_global_form: Handle<GlobalCurve>,
half_edge: HalfEdge,
},
#[error(
"Global forms of `HalfEdge` vertices do not match vertices of \n\
`HalfEdge`'s global form\n\
- `GlobalVertex` from start vertex: {global_vertex_from_half_edge:#?}\n\
- `GlobalVertex` objects from `GlobalEdge`: \
{global_vertices_from_global_form:#?}\n\
- `HalfEdge`: {half_edge:#?}"
)]
GlobalVertexMismatch {
global_vertex_from_half_edge: Handle<GlobalVertex>,
global_vertices_from_global_form: [Handle<GlobalVertex>; 2],
half_edge: HalfEdge,
},
#[error(
"Surface form of vertex must be defined on same surface as curve\n\
- `Surface` of curve: {curve_surface:#?}\n\
- `Surface` of surface form: {surface_form_surface:#?}"
)]
SurfaceMismatch {
curve_surface: Handle<Surface>,
surface_form_surface: Handle<Surface>,
},
#[error(
"Vertices of `HalfEdge` on curve are coincident\n\
- Position of back vertex: {back_position:?}\n\
- Position of front vertex: {front_position:?}\n\
- `HalfEdge`: {half_edge:#?}"
)]
VerticesAreCoincident {
back_position: Point<1>,
front_position: Point<1>,
distance: Scalar,
half_edge: HalfEdge,
},
}
impl HalfEdgeValidationError {
fn check_global_curve_identity(
half_edge: &HalfEdge,
errors: &mut Vec<ValidationError>,
) {
let global_curve_from_curve = half_edge.curve().global_form();
let global_curve_from_global_form = half_edge.global_form().curve();
if global_curve_from_curve.id() != global_curve_from_global_form.id() {
errors.push(
Box::new(Self::GlobalCurveMismatch {
global_curve_from_curve: global_curve_from_curve.clone(),
global_curve_from_global_form:
global_curve_from_global_form.clone(),
half_edge: half_edge.clone(),
})
.into(),
);
}
}
fn check_global_vertex_identity(
half_edge: &HalfEdge,
errors: &mut Vec<ValidationError>,
) {
let global_vertex_from_half_edge =
half_edge.start_vertex().global_form().clone();
let global_vertices_from_global_form = half_edge
.global_form()
.vertices()
.access_in_normalized_order();
let matching_global_vertex = global_vertices_from_global_form
.iter()
.find(|global_vertex| {
global_vertex.id() == global_vertex_from_half_edge.id()
});
if matching_global_vertex.is_none() {
errors.push(
Box::new(Self::GlobalVertexMismatch {
global_vertex_from_half_edge,
global_vertices_from_global_form,
half_edge: half_edge.clone(),
})
.into(),
);
}
}
fn check_surface_identity(
half_edge: &HalfEdge,
errors: &mut Vec<ValidationError>,
) {
let curve_surface = half_edge.curve().surface();
let surface_form_surface = half_edge.start_vertex().surface();
if curve_surface.id() != surface_form_surface.id() {
errors.push(
Box::new(Self::SurfaceMismatch {
curve_surface: curve_surface.clone(),
surface_form_surface: surface_form_surface.clone(),
})
.into(),
);
}
}
fn check_vertex_positions(
half_edge: &HalfEdge,
config: &ValidationConfig,
errors: &mut Vec<ValidationError>,
) {
let [back_position, front_position] = half_edge.boundary();
let distance = (back_position - front_position).magnitude();
if distance < config.distinct_min_distance {
errors.push(
Box::new(Self::VerticesAreCoincident {
back_position,
front_position,
distance,
half_edge: half_edge.clone(),
})
.into(),
);
}
}
}
#[cfg(test)]
mod tests {
use fj_interop::ext::ArrayExt;
use fj_math::Point;
use crate::{
builder::HalfEdgeBuilder,
insert::Insert,
objects::{GlobalCurve, HalfEdge},
partial::{Partial, PartialHalfEdge, PartialObject},
services::Services,
validate::Validate,
};
#[test]
fn half_edge_global_curve_mismatch() -> anyhow::Result<()> {
let mut services = Services::new();
let valid = {
let mut half_edge = PartialHalfEdge::default();
half_edge.update_as_line_segment_from_points(
services.objects.surfaces.xy_plane(),
[[0., 0.], [1., 0.]],
);
half_edge.build(&mut services.objects)
};
let invalid = {
let global_form = {
let mut global_edge =
Partial::from(valid.global_form().clone());
global_edge.write().curve =
Partial::from(GlobalCurve.insert(&mut services.objects));
global_edge.build(&mut services.objects)
};
let vertices = valid
.boundary()
.zip_ext(valid.surface_vertices().map(Clone::clone));
HalfEdge::new(valid.curve().clone(), vertices, global_form)
};
valid.validate_and_return_first_error()?;
assert!(invalid.validate_and_return_first_error().is_err());
Ok(())
}
#[test]
fn half_edge_global_vertex_mismatch() -> anyhow::Result<()> {
let mut services = Services::new();
let valid = {
let mut half_edge = PartialHalfEdge::default();
half_edge.update_as_line_segment_from_points(
services.objects.surfaces.xy_plane(),
[[0., 0.], [1., 0.]],
);
half_edge.build(&mut services.objects)
};
let invalid = {
let global_form = {
let mut global_edge =
Partial::from(valid.global_form().clone());
global_edge.write().vertices = valid
.global_form()
.vertices()
.access_in_normalized_order()
.map(|vertex| {
Partial::from_partial(
Partial::from(vertex).read().clone(),
)
});
global_edge.build(&mut services.objects)
};
let vertices = valid
.boundary()
.zip_ext(valid.surface_vertices().map(Clone::clone));
HalfEdge::new(valid.curve().clone(), vertices, global_form)
};
valid.validate_and_return_first_error()?;
assert!(invalid.validate_and_return_first_error().is_err());
Ok(())
}
#[test]
fn vertex_surface_mismatch() -> anyhow::Result<()> {
let mut services = Services::new();
let valid = {
let mut half_edge = PartialHalfEdge::default();
half_edge.update_as_line_segment_from_points(
services.objects.surfaces.xy_plane(),
[[0., 0.], [1., 0.]],
);
half_edge.build(&mut services.objects)
};
let invalid = {
let vertices = valid
.boundary()
.zip_ext(valid.surface_vertices())
.map(|(point, surface_vertex)| {
let mut surface_vertex =
Partial::from(surface_vertex.clone());
surface_vertex.write().surface =
Partial::from(services.objects.surfaces.xz_plane());
(point, surface_vertex.build(&mut services.objects))
});
HalfEdge::new(
valid.curve().clone(),
vertices,
valid.global_form().clone(),
)
};
valid.validate_and_return_first_error()?;
assert!(invalid.validate_and_return_first_error().is_err());
Ok(())
}
#[test]
fn half_edge_vertices_are_coincident() -> anyhow::Result<()> {
let mut services = Services::new();
let valid = {
let mut half_edge = PartialHalfEdge::default();
half_edge.update_as_line_segment_from_points(
services.objects.surfaces.xy_plane(),
[[0., 0.], [1., 0.]],
);
half_edge.build(&mut services.objects)
};
let invalid = {
let vertices = valid.surface_vertices().map(|surface_vertex| {
(Point::from([0.]), surface_vertex.clone())
});
HalfEdge::new(
valid.curve().clone(),
vertices,
valid.global_form().clone(),
)
};
valid.validate_and_return_first_error()?;
assert!(invalid.validate_and_return_first_error().is_err());
Ok(())
}
}