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
use fj_math::{Point, Scalar};
use crate::{
objects::{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_vertex_identity(self, errors);
HalfEdgeValidationError::check_vertex_coincidence(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 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_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_vertex_coincidence(
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,
objects::HalfEdge,
partial::{Partial, PartialHalfEdge, PartialObject},
services::Services,
validate::Validate,
};
#[test]
fn half_edge_global_vertex_mismatch() -> anyhow::Result<()> {
let mut services = Services::new();
let valid = {
let surface = services.objects.surfaces.xy_plane();
let mut half_edge = PartialHalfEdge::default();
half_edge.update_as_line_segment_from_points([[0., 0.], [1., 0.]]);
half_edge.infer_vertex_positions_if_necessary(&surface.geometry());
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(), vertices, global_form)
};
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 surface = services.objects.surfaces.xy_plane();
let mut half_edge = PartialHalfEdge::default();
half_edge.update_as_line_segment_from_points([[0., 0.], [1., 0.]]);
half_edge.infer_vertex_positions_if_necessary(&surface.geometry());
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(), vertices, valid.global_form().clone())
};
valid.validate_and_return_first_error()?;
assert!(invalid.validate_and_return_first_error().is_err());
Ok(())
}
}