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
//! Intersection: where curves and surfaces meet.
//!
//! *Elsewhere:* `IntPatch`, `GeomInt`, `IntAna`, `IntCurve`, `IntCurveSurface`,
//! `IntWalk`, `IntSurf`, `ApproxInt` and `Extrema`.
//!
//! The entry points, by what is being intersected:
//!
//! - [`intersect_surfaces`]: surface/surface, the one `ogeom-bool` builds on.
//! Analytic closed forms where they exist, with exact same-parameter
//! pcurves; the marching-and-fitting pipeline where they do not, with the
//! tolerance reported as a sum of stated parts.
//! - [`intersect_curves_2d`] / [`intersect_curves`]: curve/curve in the
//! plane and in space. The planar one is what boolean face splitting runs
//! on; the spatial one reports the gap each crossing achieved, because
//! space curves generically miss.
//! - [`intersect_curve_surface`]: curve/surface, the well-posed system, and
//! what the exact point-in-solid classifier will cast its rays with.
//!
//! The stages underneath are public because each is separately measurable:
//! [`surface_surface`] (the closed forms), [`seeds`]/[`trace`]/[`branches`]
//! (the marcher), [`approximate_branch`] (polyline to curves).
//!
//! # The instruments
//!
//! **This crate was the project's single largest risk** (no Rust equivalent
//! existed, and it is where prior open-source B-rep efforts failed), so it is
//! held to instruments rather than trusted. They live in `tests/support/`,
//! because measuring an intersector is not something a caller of one wants to
//! do; what a caller wants is an intersector that has been measured.
//!
//! One scores accuracy: every point of every reported curve against both
//! surfaces, with ground truth being the surfaces themselves rather than
//! anyone else's answer. The other scores completeness: the surfaces are
//! asked, by signed distance and the intermediate value theorem, where the
//! intersection *must* be, and every such cell had better be reached by some
//! branch. The second exists because the first cannot catch a missing answer:
//! an intersector that finds one circle of two and traces it perfectly scores
//! perfectly on accuracy alone. Both have negative controls in
//! `tests/instruments.rs`; they demonstrably fail when something is genuinely
//! missing.
//!
//! What this still lacks is an input no one here generated: a published
//! corpus. Until that lands, the numbers say the machinery is sound on what it
//! has seen, and they say nothing more than that.
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;