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
use fj_interop::ext::ArrayExt;
use fj_math::{Line, Plane, Point, Scalar};
use crate::{
geometry::path::{GlobalPath, SurfacePath},
objects::{Curve, GlobalCurve, Objects, Surface},
storage::Handle,
validate::ValidationError,
};
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct SurfaceSurfaceIntersection {
pub intersection_curves: [Handle<Curve>; 2],
}
impl SurfaceSurfaceIntersection {
pub fn compute(
surfaces: [Handle<Surface>; 2],
objects: &Objects,
) -> Result<Option<Self>, ValidationError> {
let surfaces_and_planes = surfaces.map(|surface| {
let plane = plane_from_surface(&surface);
(surface, plane)
});
let [a, b] = surfaces_and_planes.clone().map(|(_, plane)| plane);
let (a_distance, a_normal) = a.constant_normal_form();
let (b_distance, b_normal) = b.constant_normal_form();
let direction = a_normal.cross(&b_normal);
let denom = direction.dot(&direction);
if denom == Scalar::ZERO {
return Ok(None);
}
let origin = (b_normal * a_distance - a_normal * b_distance)
.cross(&direction)
/ denom;
let origin = Point { coords: origin };
let line = Line::from_origin_and_direction(origin, direction);
let curves = surfaces_and_planes.try_map_ext(|(surface, plane)| {
let path = SurfacePath::Line(plane.project_line(&line));
let global_form = objects.global_curves.insert(GlobalCurve)?;
objects
.curves
.insert(Curve::new(surface, path, global_form))
})?;
Ok(Some(Self {
intersection_curves: curves,
}))
}
}
fn plane_from_surface(surface: &Surface) -> Plane {
let (line, path) = {
let line = match surface.geometry().u {
GlobalPath::Line(line) => line,
_ => todo!("Only plane-plane intersection is currently supported."),
};
(line, surface.geometry().v)
};
Plane::from_parametric(line.origin(), line.direction(), path)
}
#[cfg(test)]
mod tests {
use fj_math::Transform;
use pretty_assertions::assert_eq;
use crate::{
algorithms::transform::TransformObject, builder::CurveBuilder,
insert::Insert, objects::Objects, partial::PartialCurve,
};
use super::SurfaceSurfaceIntersection;
#[test]
fn plane_plane() -> anyhow::Result<()> {
let objects = Objects::new();
let xy = objects.surfaces.xy_plane();
let xz = objects.surfaces.xz_plane();
assert_eq!(
SurfaceSurfaceIntersection::compute(
[
xy.clone(),
xy.clone().transform(
&Transform::translation([0., 0., 1.],),
&objects
)?
],
&objects
)?,
None,
);
let mut expected_xy = PartialCurve {
surface: Some(xy.clone()),
..Default::default()
};
expected_xy.update_as_u_axis();
let expected_xy = expected_xy.build(&objects)?.insert(&objects)?;
let mut expected_xz = PartialCurve {
surface: Some(xz.clone()),
..Default::default()
};
expected_xz.update_as_u_axis();
let expected_xz = expected_xz.build(&objects)?.insert(&objects)?;
assert_eq!(
SurfaceSurfaceIntersection::compute([xy, xz], &objects)?,
Some(SurfaceSurfaceIntersection {
intersection_curves: [expected_xy, expected_xz],
})
);
Ok(())
}
}