1use std::f64::consts::{FRAC_PI_2, TAU};
8
9use crate::MathError;
10use crate::curves::{Circle3D, Ellipse3D};
11use crate::frame::Frame3;
12use crate::nurbs::curve::NurbsCurve;
13use crate::nurbs::fitting::interpolate;
14use crate::nurbs::intersection::{IntersectionCurve, IntersectionPoint};
15use crate::surfaces::{ConicalSurface, CylindricalSurface, SphericalSurface, ToroidalSurface};
16use crate::tolerance::Tolerance;
17use crate::vec::{Point3, Vec3};
18
19#[derive(Debug, Clone)]
21pub enum ExactIntersectionCurve {
22 Circle(Circle3D),
24 Ellipse(Ellipse3D),
26 Points(Vec<Point3>),
28}
29
30pub fn exact_plane_analytic(
41 surface: AnalyticSurface<'_>,
42 plane_normal: Vec3,
43 plane_d: f64,
44) -> Result<Vec<ExactIntersectionCurve>, MathError> {
45 exact_plane_analytic_reaching(surface, plane_normal, plane_d, 0.0)
46}
47
48pub fn exact_plane_analytic_reaching(
56 surface: AnalyticSurface<'_>,
57 plane_normal: Vec3,
58 plane_d: f64,
59 reach: f64,
60) -> Result<Vec<ExactIntersectionCurve>, MathError> {
61 match surface {
62 AnalyticSurface::Cylinder(cyl) => exact_plane_cylinder(cyl, plane_normal, plane_d),
63 AnalyticSurface::Sphere(sphere) => exact_plane_sphere(sphere, plane_normal, plane_d),
64 AnalyticSurface::Cone(cone) => exact_plane_cone(cone, plane_normal, plane_d, reach),
65 AnalyticSurface::Torus(torus) => {
66 if let Some(circles) = exact_plane_torus(torus, plane_normal, plane_d)? {
67 return Ok(circles);
68 }
69 if let Some(loops) = plane_torus_winding_loops(torus, plane_normal, plane_d, 128) {
70 return Ok(loops
71 .into_iter()
72 .map(ExactIntersectionCurve::Points)
73 .collect());
74 }
75 let chains = sample_plane_torus(torus, plane_normal, plane_d)?;
77 Ok(chains
78 .into_iter()
79 .map(ExactIntersectionCurve::Points)
80 .collect())
81 }
82 }
83}
84
85fn exact_plane_torus(
96 torus: &ToroidalSurface,
97 normal: Vec3,
98 d: f64,
99) -> Result<Option<Vec<ExactIntersectionCurve>>, MathError> {
100 let len = normal.length();
101 let n = normal.normalize()?;
102 let d = d / len;
103 let axis = torus.z_axis();
104 let center = torus.center();
105 let (big, small) = (torus.major_radius(), torus.minor_radius());
106 let height = d - dot_np(n, center);
107 let along = n.dot(axis);
108 if along.abs() > 1.0 - 1e-10 {
109 if height.abs() >= small - 1e-10 * small {
110 return Ok(if height.abs() > small + 1e-10 * small {
111 Some(Vec::new())
112 } else {
113 None
114 });
115 }
116 let reach = small.mul_add(small, -(height * height)).sqrt();
117 if big - reach <= 1e-10 * big {
118 return Ok(None);
119 }
120 let middle = center + n * height;
121 return Ok(Some(vec![
122 ExactIntersectionCurve::Circle(Circle3D::new(middle, n, big + reach)?),
123 ExactIntersectionCurve::Circle(Circle3D::new(middle, n, big - reach)?),
124 ]));
125 }
126 if along.abs() < 1e-10 && height.abs() < 1e-10 * (big + small) {
127 let out = axis.cross(n).normalize()?;
128 return Ok(Some(vec![
129 ExactIntersectionCurve::Circle(Circle3D::new(center + out * big, n, small)?),
130 ExactIntersectionCurve::Circle(Circle3D::new(center - out * big, n, small)?),
131 ]));
132 }
133 Ok(None)
134}
135
136fn exact_plane_cylinder(
142 cyl: &CylindricalSurface,
143 normal: Vec3,
144 d: f64,
145) -> Result<Vec<ExactIntersectionCurve>, MathError> {
146 let axis = cyl.axis();
147 let cos_theta = normal.dot(axis).abs();
148 let r = cyl.radius();
149
150 if cos_theta < 1e-10 {
151 let chains = sample_plane_cylinder(cyl, normal, d)?;
154 return Ok(chains
155 .into_iter()
156 .map(ExactIntersectionCurve::Points)
157 .collect());
158 }
159
160 let n_dot_axis = normal.dot(axis);
163 let n_dot_origin = dot_np(normal, cyl.origin());
164 let t = (d - n_dot_origin) / n_dot_axis;
165 let center_on_axis = Point3::new(
166 cyl.origin().x() + t * axis.x(),
167 cyl.origin().y() + t * axis.y(),
168 cyl.origin().z() + t * axis.z(),
169 );
170
171 if cos_theta > 1.0 - 1e-10 {
172 let circle = Circle3D::new(center_on_axis, normal, r)?;
174 Ok(vec![ExactIntersectionCurve::Circle(circle)])
175 } else {
176 let semi_minor = r;
180 let semi_major = r / cos_theta;
181
182 let axis_proj = Vec3::new(
186 axis.x() - n_dot_axis * normal.x(),
187 axis.y() - n_dot_axis * normal.y(),
188 axis.z() - n_dot_axis * normal.z(),
189 );
190 let u_axis = axis_proj.normalize()?;
191 let v_axis = normal.cross(u_axis);
192
193 let ellipse = Ellipse3D::with_axes(
194 center_on_axis,
195 normal,
196 semi_major,
197 semi_minor,
198 u_axis,
199 v_axis,
200 )?;
201 Ok(vec![ExactIntersectionCurve::Ellipse(ellipse)])
202 }
203}
204
205fn exact_plane_sphere(
209 sphere: &SphericalSurface,
210 normal: Vec3,
211 d: f64,
212) -> Result<Vec<ExactIntersectionCurve>, MathError> {
213 let h = dot_np(normal, sphere.center()) - d;
214 let r = sphere.radius();
215
216 if h.abs() > r - 1e-10 {
217 return Ok(vec![]);
218 }
219
220 let circle_r = (r.mul_add(r, -(h * h))).sqrt();
221 let circle_center = Point3::new(
222 h.mul_add(-normal.x(), sphere.center().x()),
223 h.mul_add(-normal.y(), sphere.center().y()),
224 h.mul_add(-normal.z(), sphere.center().z()),
225 );
226
227 let circle = Circle3D::new(circle_center, normal, circle_r)?;
228 Ok(vec![ExactIntersectionCurve::Circle(circle)])
229}
230
231fn exact_plane_cone(
240 cone: &ConicalSurface,
241 normal: Vec3,
242 d: f64,
243 reach: f64,
244) -> Result<Vec<ExactIntersectionCurve>, MathError> {
245 let axis = cone.axis();
246 let cos_theta = normal.dot(axis).abs();
247 let half_angle = cone.half_angle();
248
249 if cos_theta > 1.0 - 1e-10 {
250 let n_dot_axis = normal.dot(axis);
253 let n_dot_apex = dot_np(normal, cone.apex());
254 let t = (d - n_dot_apex) / n_dot_axis;
255
256 if t.abs() < 1e-10 {
261 return Ok(vec![]);
262 }
263
264 let center = Point3::new(
265 cone.apex().x() + t * axis.x(),
266 cone.apex().y() + t * axis.y(),
267 cone.apex().z() + t * axis.z(),
268 );
269 let circle_r = t.abs() * half_angle.cos() / half_angle.sin();
273 if circle_r < 1e-15 {
274 return Ok(vec![]);
275 }
276
277 let circle = Circle3D::new(center, normal, circle_r)?;
278 return Ok(vec![ExactIntersectionCurve::Circle(circle)]);
279 }
280
281 let c = normal.dot(axis);
293 let p2 = (1.0 - c * c).max(0.0);
294 let p = p2.sqrt();
295 let k = half_angle.sin().powi(2);
296 let a_coeff = p2 - k;
297
298 let m = Vec3::new(
300 axis.x() - c * normal.x(),
301 axis.y() - c * normal.y(),
302 axis.z() - c * normal.z(),
303 );
304 let m_len = m.length();
305 if m_len < 1e-12 {
306 let chains = sample_plane_cone(cone, normal, d, reach)?;
309 return Ok(chains
310 .into_iter()
311 .map(ExactIntersectionCurve::Points)
312 .collect());
313 }
314 let e1 = m * (1.0 / m_len);
315 let e2 = normal.cross(e1);
316 let apex = cone.apex();
317 let e = d - dot_np(normal, apex);
318
319 if a_coeff < -1e-9 {
322 let abs_a = -a_coeff; if e * c < 0.0 {
329 return Ok(vec![]);
330 }
331 let s_c = e * c * p / abs_a;
334 let rhs = e * e * k * (1.0 - k) / abs_a;
335 if rhs <= 0.0 {
336 return Ok(vec![]);
337 }
338 let semi_s = (rhs / abs_a).sqrt(); let semi_t = (rhs / k).sqrt(); if semi_s < 1e-12 || semi_t < 1e-12 {
341 return Ok(vec![]);
342 }
343 let center = apex + normal * e + e1 * s_c;
344 let (semi_major, semi_minor, u_axis, v_axis) = if semi_s >= semi_t {
345 (semi_s, semi_t, e1, e2)
346 } else {
347 (semi_t, semi_s, e2, e1)
348 };
349 let ellipse = Ellipse3D::with_axes(center, normal, semi_major, semi_minor, u_axis, v_axis)?;
350 return Ok(vec![ExactIntersectionCurve::Ellipse(ellipse)]);
351 }
352
353 let chains = sample_plane_cone(cone, normal, d, reach)?;
356 Ok(chains
357 .into_iter()
358 .map(ExactIntersectionCurve::Points)
359 .collect())
360}
361
362#[allow(clippy::many_single_char_names)]
377pub fn plane_cone_conic_arc(
378 cone: &ConicalSurface,
379 normal: Vec3,
380 d: f64,
381 from: Point3,
382 to: Point3,
383) -> Result<Option<NurbsCurve>, MathError> {
384 let len = normal.length();
385 if len < 1e-15 {
386 return Err(MathError::ZeroVector);
387 }
388 let (normal, d) = (normal * (1.0 / len), d / len);
389 let axis = cone.axis();
390 let c = normal.dot(axis);
391 let p2 = (1.0 - c * c).max(0.0);
392 let p = p2.sqrt();
393 let k = cone.half_angle().sin().powi(2);
394 let a_coeff = p2 - k;
395 let m = Vec3::new(
396 axis.x() - c * normal.x(),
397 axis.y() - c * normal.y(),
398 axis.z() - c * normal.z(),
399 );
400 let m_len = m.length();
401 if m_len < 1e-12 || a_coeff < -1e-9 {
402 return Ok(None);
403 }
404 let e1 = m * (1.0 / m_len);
405 let e2 = normal.cross(e1);
406 let apex = cone.apex();
407 let e = d - dot_np(normal, apex);
408 let origin = apex + normal * e;
409 let plane_st = |q: Point3| {
410 let w = q - origin;
411 (w.dot(e1), w.dot(e2))
412 };
413 let ((s0, t0), (s1, t1)) = (plane_st(from), plane_st(to));
414 let scale = s0.abs().max(t0.abs()).max(s1.abs()).max(t1.abs()).max(1.0);
415 if e.abs() < 1e-9 * scale || (from - to).length() <= 1e-9 * scale {
416 return Ok(None);
417 }
418 let point = |s: f64, t: f64| origin + e1 * s + e2 * t;
419 let on_curve = |q: Point3, r: Point3| (q - r).length() <= 1e-6 * scale;
420 let (control, weights) = if a_coeff.abs() <= 1e-9 {
421 let lin = 2.0 * e * c * p;
423 if lin.abs() < 1e-12 * scale {
424 return Ok(None);
425 }
426 let (alpha, beta) = (k / lin, -e * e * (c * c - k) / lin);
427 if !on_curve(point(alpha * t0 * t0 + beta, t0), from)
428 || !on_curve(point(alpha * t1 * t1 + beta, t1), to)
429 {
430 return Ok(None);
431 }
432 let mid = point(alpha * t0 * t1 + beta, 0.5 * (t0 + t1));
433 (vec![from, mid, to], vec![1.0; 3])
434 } else {
435 let s_c = -e * c * p / a_coeff;
437 let r = e * e * k * (1.0 - k) / a_coeff;
438 if r <= 0.0 {
439 return Ok(None);
440 }
441 let (a, b) = ((r / a_coeff).sqrt(), (r / k).sqrt());
442 let (x0, x1) = (s0 - s_c, s1 - s_c);
443 if x0 * x1 <= 0.0 {
444 return Ok(None);
445 }
446 let side = x0.signum();
447 let hyperbola = |phi: f64| point(s_c + side * a * phi.cosh(), b * phi.sinh());
448 let (phi0, phi1) = ((t0 / b).asinh(), (t1 / b).asinh());
449 if !on_curve(hyperbola(phi0), from) || !on_curve(hyperbola(phi1), to) {
450 return Ok(None);
451 }
452 #[allow(clippy::cast_possible_truncation, clippy::cast_sign_loss)]
453 let pieces = ((phi1 - phi0).abs().ceil() as usize).max(1);
454 let mut control = vec![from];
455 let mut weights = vec![1.0];
456 for i in 0..pieces {
457 #[allow(clippy::cast_precision_loss)]
458 let (fa, fb) = (i as f64 / pieces as f64, (i + 1) as f64 / pieces as f64);
459 let (pa, pb) = (phi0 + (phi1 - phi0) * fa, phi0 + (phi1 - phi0) * fb);
460 let (mid, half) = (0.5 * (pa + pb), 0.5 * (pb - pa));
461 let w = half.cosh();
462 control.push(point(s_c + side * a * mid.cosh() / w, b * mid.sinh() / w));
463 weights.push(w);
464 control.push(if i + 1 == pieces { to } else { hyperbola(pb) });
465 weights.push(1.0);
466 }
467 (control, weights)
468 };
469 let pieces = (control.len() - 1) / 2;
470 let mut knots = vec![0.0; 3];
471 for i in 1..pieces {
472 #[allow(clippy::cast_precision_loss)]
473 knots.extend([i as f64; 2]);
474 }
475 #[allow(clippy::cast_precision_loss)]
476 knots.extend([pieces as f64; 3]);
477 let curve = NurbsCurve::new(2, knots, control, weights)?;
478 let (sin_a, cos_a) = cone.half_angle().sin_cos();
483 let off_cone = |q: Point3| {
484 let w = q - apex;
485 let h = w.dot(axis);
486 (w - axis * h)
487 .length()
488 .mul_add(sin_a, -(h.abs() * cos_a))
489 .abs()
490 };
491 for i in 0..pieces {
492 for f in [0.25, 0.5, 0.75] {
493 #[allow(clippy::cast_precision_loss)]
494 if off_cone(curve.evaluate(i as f64 + f)) > 1e-9 * scale {
495 return Ok(None);
496 }
497 }
498 }
499 Ok(Some(curve))
500}
501
502#[derive(Clone, Copy)]
504pub enum AnalyticSurface<'a> {
505 Cylinder(&'a CylindricalSurface),
507 Cone(&'a ConicalSurface),
509 Sphere(&'a SphericalSurface),
511 Torus(&'a ToroidalSurface),
513}
514
515fn dot_np(n: Vec3, p: Point3) -> f64 {
517 n.dot(Vec3::new(p.x(), p.y(), p.z()))
518}
519
520pub fn intersect_plane_analytic(
528 surface: AnalyticSurface<'_>,
529 normal: Vec3,
530 d: f64,
531) -> Result<Vec<IntersectionCurve>, MathError> {
532 match surface {
533 AnalyticSurface::Cylinder(cyl) => intersect_plane_cylinder(cyl, normal, d),
534 AnalyticSurface::Cone(cone) => intersect_plane_cone(cone, normal, d),
535 AnalyticSurface::Sphere(sphere) => intersect_plane_sphere(sphere, normal, d),
536 AnalyticSurface::Torus(torus) => intersect_plane_torus(torus, normal, d),
537 }
538}
539
540pub fn sample_plane_analytic(
551 surface: AnalyticSurface<'_>,
552 normal: Vec3,
553 d: f64,
554) -> Result<Vec<Vec<Point3>>, MathError> {
555 match surface {
556 AnalyticSurface::Cylinder(cyl) => sample_plane_cylinder(cyl, normal, d),
557 AnalyticSurface::Cone(cone) => sample_plane_cone(cone, normal, d, 0.0),
558 AnalyticSurface::Sphere(sphere) => sample_plane_sphere(sphere, normal, d),
559 AnalyticSurface::Torus(torus) => sample_plane_torus(torus, normal, d),
560 }
561}
562
563#[allow(clippy::cast_precision_loss, clippy::unnecessary_wraps)]
565fn sample_plane_cylinder(
566 cyl: &CylindricalSurface,
567 normal: Vec3,
568 d: f64,
569) -> Result<Vec<Vec<Point3>>, MathError> {
570 let n_samples = 64_usize;
571 let mut points = Vec::with_capacity(n_samples + 1);
572
573 for i in 0..=n_samples {
574 let u = TAU * (i as f64) / (n_samples as f64);
575 let base = cyl.evaluate(u, 0.0);
576 let n_dot_axis = normal.dot(cyl.axis());
577 let n_dot_base = dot_np(normal, base);
578
579 if n_dot_axis.abs() < 1e-12 {
580 if (n_dot_base - d).abs() < 1e-6 {
581 points.push(base);
582 }
583 } else {
584 let v = (d - n_dot_base) / n_dot_axis;
585 if v.abs() <= 100.0 {
586 points.push(cyl.evaluate(u, v));
587 }
588 }
589 }
590
591 if points.len() < 2 {
592 Ok(vec![])
593 } else {
594 Ok(vec![points])
595 }
596}
597
598#[allow(clippy::cast_precision_loss)]
600fn sample_plane_sphere(
601 sphere: &SphericalSurface,
602 normal: Vec3,
603 d: f64,
604) -> Result<Vec<Vec<Point3>>, MathError> {
605 let h = dot_np(normal, sphere.center()) - d;
606 let r = sphere.radius();
607
608 if h.abs() > r - 1e-10 {
609 return Ok(vec![]);
610 }
611
612 let circle_r = (r.mul_add(r, -(h * h))).sqrt();
613 let circle_center = Point3::new(
614 h.mul_add(-normal.x(), sphere.center().x()),
615 h.mul_add(-normal.y(), sphere.center().y()),
616 h.mul_add(-normal.z(), sphere.center().z()),
617 );
618
619 let basis = Frame3::from_normal(circle_center, normal)?;
620 let u_dir = basis.x;
621 let v_dir = basis.y;
622
623 let n_samples = 64_usize;
624 let mut points = Vec::with_capacity(n_samples + 1);
625
626 for i in 0..=n_samples {
627 let theta = TAU * (i as f64) / (n_samples as f64);
628 let (sin_t, cos_t) = theta.sin_cos();
629 points.push(circle_center + u_dir * (circle_r * cos_t) + v_dir * (circle_r * sin_t));
630 }
631
632 Ok(vec![points])
633}
634
635#[allow(clippy::cast_precision_loss, clippy::unnecessary_wraps)]
647fn sample_plane_cone(
648 cone: &ConicalSurface,
649 normal: Vec3,
650 d: f64,
651 reach: f64,
652) -> Result<Vec<Vec<Point3>>, MathError> {
653 let apex = cone.apex();
654 let n_dot_apex = dot_np(normal, apex);
655 let e = d - n_dot_apex;
656
657 let n_samples = 512_usize;
661 let mut vs: Vec<Option<f64>> = Vec::with_capacity(n_samples);
662 let mut v_min = f64::INFINITY;
663 for i in 0..n_samples {
664 let u = TAU * (i as f64) / (n_samples as f64);
665 let g = cone.evaluate(u, 1.0) - apex;
666 let n_dot_g = normal.dot(Vec3::new(g.x(), g.y(), g.z()));
667 if n_dot_g.abs() < 1e-12 {
668 vs.push(None);
669 continue;
670 }
671 let v = e / n_dot_g;
672 if v >= -1e-12 {
673 let v = v.max(0.0);
674 v_min = v_min.min(v);
675 vs.push(Some(v));
676 } else {
677 vs.push(None);
678 }
679 }
680
681 if !v_min.is_finite() {
682 return Ok(Vec::new());
683 }
684
685 let v_max = (8.0 * v_min).max(v_min + 4.0).max(reach);
694
695 let kept: Vec<Option<f64>> = vs.iter().map(|v| v.filter(|&v| v <= v_max)).collect();
698
699 let point_at = |u: f64, v: f64| -> Point3 {
700 let g = cone.evaluate(u, 1.0) - apex;
701 apex + g * v
702 };
703 #[allow(clippy::cast_precision_loss)]
704 let u_of = |i: usize| TAU * (i as f64) / (n_samples as f64);
705 let n_dot_g_at = |u: f64| -> f64 {
706 let g = cone.evaluate(u, 1.0) - apex;
707 normal.dot(Vec3::new(g.x(), g.y(), g.z()))
708 };
709
710 if kept.iter().all(Option::is_some) {
711 let mut pts: Vec<Point3> = kept
713 .iter()
714 .enumerate()
715 .filter_map(|(i, v)| v.map(|v| point_at(u_of(i), v)))
716 .collect();
717 if let Some(&first) = pts.first() {
718 pts.push(first);
719 }
720 return Ok(vec![pts]);
721 }
722
723 let tail = |i_end: usize, forward: bool, kept: &[Option<f64>]| -> Vec<Point3> {
732 let Some(v_end) = kept[i_end] else {
733 return Vec::new();
734 };
735 let u_end = u_of(i_end);
736 #[allow(clippy::cast_precision_loss)]
737 let pitch = TAU / (n_samples as f64);
738 let u_next = if forward {
739 u_end + pitch
740 } else {
741 u_end - pitch
742 };
743 let target = e / v_max;
744 let h_end = n_dot_g_at(u_end) - target;
745 let h_next = n_dot_g_at(u_next) - target;
746 if v_end >= v_max || h_end == 0.0 || h_end.signum() == h_next.signum() {
747 return Vec::new();
748 }
749 let (mut lo, mut hi) = (u_end, u_next);
750 for _ in 0..60 {
751 let mid = f64::midpoint(lo, hi);
752 if (n_dot_g_at(mid) - target).signum() == h_end.signum() {
753 lo = mid;
754 } else {
755 hi = mid;
756 }
757 }
758 let u_star = f64::midpoint(lo, hi);
759 let tail_n = 8_usize;
760 (1..=tail_n)
761 .filter_map(|k| {
762 #[allow(clippy::cast_precision_loss)]
763 let u = u_end + (u_star - u_end) * (k as f64) / (tail_n as f64);
764 let ng = n_dot_g_at(u);
765 if ng.abs() < 1e-12 {
766 return None;
767 }
768 let v = e / ng;
769 (v >= -1e-12 && v <= v_max * (1.0 + 1e-9)).then(|| point_at(u, v.max(0.0)))
770 })
771 .collect()
772 };
773
774 let gap = kept.iter().position(Option::is_none).unwrap_or(0);
777 let mut chains: Vec<Vec<Point3>> = Vec::new();
778 let mut run: Vec<usize> = Vec::new();
779 let flush = |run: &mut Vec<usize>, chains: &mut Vec<Vec<Point3>>| {
780 if run.len() >= 2 {
781 let first = run[0];
782 let last = run[run.len() - 1];
783 let mut pts: Vec<Point3> = tail(first, false, &kept);
784 pts.reverse();
785 pts.extend(
786 run.iter()
787 .filter_map(|&i| kept[i].map(|v| point_at(u_of(i), v))),
788 );
789 pts.extend(tail(last, true, &kept));
790 chains.push(pts);
791 }
792 run.clear();
793 };
794 for k in 0..n_samples {
795 let idx = (gap + k) % n_samples;
796 if kept[idx].is_some() {
797 run.push(idx);
798 } else {
799 flush(&mut run, &mut chains);
800 }
801 }
802 flush(&mut run, &mut chains);
803 Ok(chains.into_iter().filter(|c| c.len() >= 2).collect())
804}
805
806#[allow(clippy::unnecessary_wraps)] fn sample_plane_torus(
812 torus: &ToroidalSurface,
813 normal: Vec3,
814 d: f64,
815) -> Result<Vec<Vec<Point3>>, MathError> {
816 let crossing_pts = plane_torus_crossings(torus, normal, d, 128);
817 Ok(chain_torus_crossings(&crossing_pts)
818 .into_iter()
819 .map(|run| run.into_iter().map(|p| p.point).collect())
820 .collect())
821}
822
823#[allow(clippy::cast_precision_loss)]
833pub fn intersect_plane_cylinder(
834 cyl: &CylindricalSurface,
835 normal: Vec3,
836 d: f64,
837) -> Result<Vec<IntersectionCurve>, MathError> {
838 let n_samples = 64_usize;
839 let mut points_3d = Vec::new();
840 let mut ipoints = Vec::new();
841
842 for i in 0..=n_samples {
843 let u = TAU * (i as f64) / (n_samples as f64);
844 let base = cyl.evaluate(u, 0.0);
847 let n_dot_axis = normal.dot(cyl.axis());
848 let n_dot_base = dot_np(normal, base);
849
850 if n_dot_axis.abs() < 1e-12 {
851 if (n_dot_base - d).abs() < 1e-6 {
853 let pt = base;
854 points_3d.push(pt);
855 ipoints.push(IntersectionPoint {
856 point: pt,
857 param1: (u, 0.0),
858 param2: (0.0, 0.0),
859 });
860 }
861 } else {
862 let v = (d - n_dot_base) / n_dot_axis;
863 if v.abs() <= 100.0 {
865 let pt = cyl.evaluate(u, v);
866 points_3d.push(pt);
867 ipoints.push(IntersectionPoint {
868 point: pt,
869 param1: (u, v),
870 param2: (0.0, 0.0),
871 });
872 }
873 }
874 }
875
876 build_curves_from_points(&points_3d, ipoints)
877}
878
879#[allow(clippy::cast_precision_loss)]
888pub fn intersect_plane_sphere(
889 sphere: &SphericalSurface,
890 normal: Vec3,
891 d: f64,
892) -> Result<Vec<IntersectionCurve>, MathError> {
893 let h = dot_np(normal, sphere.center()) - d;
894 let r = sphere.radius();
895
896 if h.abs() > r - 1e-10 {
898 return Ok(vec![]);
899 }
900
901 let circle_r = (r.mul_add(r, -(h * h))).sqrt();
902 let circle_center = Point3::new(
903 h.mul_add(-normal.x(), sphere.center().x()),
904 h.mul_add(-normal.y(), sphere.center().y()),
905 h.mul_add(-normal.z(), sphere.center().z()),
906 );
907
908 let basis = Frame3::from_normal(circle_center, normal)?;
910 let u_dir = basis.x;
911 let v_dir = basis.y;
912
913 let n_samples = 64_usize;
914 let mut points_3d = Vec::new();
915 let mut ipoints = Vec::new();
916
917 for i in 0..=n_samples {
918 let theta = TAU * (i as f64) / (n_samples as f64);
919 let (sin_t, cos_t) = theta.sin_cos();
920 let pt = circle_center + u_dir * (circle_r * cos_t) + v_dir * (circle_r * sin_t);
921 points_3d.push(pt);
922 ipoints.push(IntersectionPoint {
923 point: pt,
924 param1: (theta, 0.0),
925 param2: (0.0, 0.0),
926 });
927 }
928
929 build_curves_from_points(&points_3d, ipoints)
930}
931
932#[allow(clippy::cast_precision_loss)]
941pub fn intersect_plane_cone(
942 cone: &ConicalSurface,
943 normal: Vec3,
944 d: f64,
945) -> Result<Vec<IntersectionCurve>, MathError> {
946 let n_samples = 64_usize;
947 let mut points_3d = Vec::new();
948 let mut ipoints = Vec::new();
949
950 for i in 0..n_samples {
951 let u = TAU * (i as f64) / (n_samples as f64);
952 let apex = cone.apex();
955 let n_dot_apex = dot_np(normal, apex);
956 let p1 = cone.evaluate(u, 1.0);
958 let dir = p1 - apex;
959 let n_dot_dir = normal.dot(dir);
960
961 if n_dot_dir.abs() < 1e-12 {
962 continue;
963 }
964
965 let v = (d - n_dot_apex) / n_dot_dir;
966 if v.abs() > 1e-10 && v.abs() < 100.0 {
968 let pt = cone.evaluate(u, v);
969 points_3d.push(pt);
970 ipoints.push(IntersectionPoint {
971 point: pt,
972 param1: (u, v),
973 param2: (0.0, 0.0),
974 });
975 }
976 }
977
978 build_curves_from_points(&points_3d, ipoints)
979}
980
981#[allow(clippy::unnecessary_wraps)]
993pub fn intersect_plane_torus(
994 torus: &ToroidalSurface,
995 normal: Vec3,
996 d: f64,
997) -> Result<Vec<IntersectionCurve>, MathError> {
998 let crossing_pts = plane_torus_crossings(torus, normal, d, 128);
1002
1003 let mut curves = Vec::new();
1004 for ipts in chain_torus_crossings(&crossing_pts) {
1005 let pts: Vec<Point3> = ipts.iter().map(|p| p.point).collect();
1006 if let Ok(curve) = interpolate(&pts, 3.min(pts.len() - 1)) {
1007 curves.push(IntersectionCurve {
1008 curve,
1009 points: ipts,
1010 });
1011 }
1012 }
1013
1014 Ok(curves)
1015}
1016
1017fn chain_torus_crossings(crossing_pts: &[(f64, f64, Point3)]) -> Vec<Vec<IntersectionPoint>> {
1029 let mut used = vec![false; crossing_pts.len()];
1030 let mut runs = Vec::new();
1031
1032 for start in 0..crossing_pts.len() {
1033 if used[start] {
1034 continue;
1035 }
1036 used[start] = true;
1037 let mut chain = vec![start];
1038
1039 loop {
1040 let last = chain[chain.len() - 1];
1041 let last_pt = crossing_pts[last].2;
1042 let mut best_idx = None;
1043 let mut best_dist = 1.0_f64;
1044
1045 for (j, &is_used) in used.iter().enumerate() {
1046 if is_used {
1047 continue;
1048 }
1049 let dist = (crossing_pts[j].2 - last_pt).length();
1050 if dist < best_dist {
1051 best_dist = dist;
1052 best_idx = Some(j);
1053 }
1054 }
1055
1056 if let Some(j) = best_idx {
1057 used[j] = true;
1058 chain.push(j);
1059 } else {
1060 break;
1061 }
1062 }
1063
1064 if chain.len() < 4 {
1065 continue;
1066 }
1067 let mut ipts: Vec<IntersectionPoint> = chain
1068 .iter()
1069 .map(|&i| IntersectionPoint {
1070 point: crossing_pts[i].2,
1071 param1: (crossing_pts[i].0, crossing_pts[i].1),
1072 param2: (0.0, 0.0),
1073 })
1074 .collect();
1075
1076 let closing_gap = (ipts[ipts.len() - 1].point - ipts[0].point).length();
1077 let median_spacing = {
1078 let mut spac: Vec<f64> = ipts
1079 .windows(2)
1080 .map(|w| (w[1].point - w[0].point).length())
1081 .collect();
1082 spac.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal));
1083 spac.get(spac.len() / 2).copied().unwrap_or(0.0)
1084 };
1085 if closing_gap > 1e-9
1092 && median_spacing > 1e-12
1093 && closing_gap <= 2.0 * median_spacing
1094 && !chain_self_touches(&ipts, median_spacing)
1095 {
1096 ipts.push(ipts[0]);
1097 }
1098 runs.push(ipts);
1099 }
1100
1101 runs
1102}
1103
1104fn chain_self_touches(ipts: &[IntersectionPoint], median_spacing: f64) -> bool {
1114 let m = ipts.len();
1115 let k = (m / 4).clamp(1, 6);
1116 if m < 3 * k || median_spacing <= 0.0 {
1117 return false;
1118 }
1119 let thresh = median_spacing * 1.5;
1120 for i in k..(m - k) {
1121 for j in (i + k)..(m - k) {
1122 if (ipts[i].point - ipts[j].point).length() < thresh {
1123 return true;
1124 }
1125 }
1126 }
1127 false
1128}
1129
1130#[allow(clippy::cast_precision_loss)]
1147fn plane_torus_crossings(
1148 torus: &ToroidalSurface,
1149 normal: Vec3,
1150 d: f64,
1151 n_v: usize,
1152) -> Vec<(f64, f64, Point3)> {
1153 let big_r = torus.major_radius();
1154 let small_r = torus.minor_radius();
1155 let a = normal.dot(torus.x_axis());
1156 let b = normal.dot(torus.y_axis());
1157 let c = normal.dot(torus.z_axis());
1158 let s = a.hypot(b);
1159 let phi = b.atan2(a);
1160 let d_local = d - dot_np(normal, torus.center());
1161
1162 let mut pts: Vec<(f64, f64, Point3)> = Vec::new();
1163
1164 if s < 1e-12 {
1166 if c.abs() < 1e-12 {
1167 return pts;
1168 }
1169 let sin_v = d_local / (small_r * c);
1170 if sin_v.abs() > 1.0 + 1e-9 {
1171 return pts;
1172 }
1173 let v0 = sin_v.clamp(-1.0, 1.0).asin();
1174 let v1 = std::f64::consts::PI - v0;
1175 let mut vs = vec![v0];
1176 if (v1 - v0).abs() > 1e-9 {
1178 vs.push(v1);
1179 }
1180 for v in vs {
1181 for i in 0..n_v {
1182 let u = TAU * (i as f64) / (n_v as f64);
1183 pts.push((u, v, torus.evaluate(u, v)));
1184 }
1185 }
1186 return pts;
1187 }
1188
1189 let v_off = TAU / (n_v as f64) * 0.5;
1195 for i in 0..n_v {
1196 let v = (i as f64).mul_add(TAU / (n_v as f64), v_off);
1197 let tube_r = small_r.mul_add(v.cos(), big_r); let rhs = (d_local - small_r * c * v.sin()) / (s * tube_r);
1199 if rhs.abs() > 1.0 {
1200 continue;
1201 }
1202 let delta = rhs.clamp(-1.0, 1.0).acos();
1203 for u in [phi + delta, phi - delta] {
1204 pts.push((u, v, torus.evaluate(u, v)));
1205 }
1206 }
1207 pts
1208}
1209
1210#[allow(clippy::cast_precision_loss)]
1219fn plane_torus_winding_loops(
1220 torus: &ToroidalSurface,
1221 normal: Vec3,
1222 d: f64,
1223 n_v: usize,
1224) -> Option<Vec<Vec<Point3>>> {
1225 let big_r = torus.major_radius();
1226 let small_r = torus.minor_radius();
1227 let a = normal.dot(torus.x_axis());
1228 let b = normal.dot(torus.y_axis());
1229 let c = normal.dot(torus.z_axis());
1230 let s = a.hypot(b);
1231 if s < 1e-12 * normal.length() || small_r >= big_r {
1232 return None;
1233 }
1234 let phi = b.atan2(a);
1235 let d_local = d - dot_np(normal, torus.center());
1236 let rhs = |v: f64| (d_local - small_r * c * v.sin()) / (s * small_r.mul_add(v.cos(), big_r));
1237 let dense = 8 * n_v;
1238 if (0..dense).any(|i| rhs(TAU * i as f64 / dense as f64).abs() > 1.0 - 1e-3) {
1239 return None;
1240 }
1241 let mut loops = [Vec::with_capacity(n_v + 1), Vec::with_capacity(n_v + 1)];
1242 for i in 0..n_v {
1243 let v = TAU * i as f64 / n_v as f64;
1244 let delta = rhs(v).acos();
1245 loops[0].push(torus.evaluate(phi + delta, v));
1246 loops[1].push(torus.evaluate(phi - delta, v));
1247 }
1248 Some(
1249 loops
1250 .into_iter()
1251 .map(|mut run| {
1252 run.push(run[0]);
1253 run
1254 })
1255 .collect(),
1256 )
1257}
1258
1259#[must_use]
1272pub fn intersect_line_torus(torus: &ToroidalSurface, origin: Point3, dir: Vec3) -> Vec<f64> {
1273 let c = torus.center();
1274 let (xa, ya, za) = (torus.x_axis(), torus.y_axis(), torus.z_axis());
1275 let big_r = torus.major_radius();
1276 let small_r = torus.minor_radius();
1277
1278 let o = Vec3::new(origin.x() - c.x(), origin.y() - c.y(), origin.z() - c.z());
1280 let (a0, a1) = (xa.dot(o), xa.dot(dir));
1281 let (b0, b1) = (ya.dot(o), ya.dot(dir));
1282 let (c0, c1) = (za.dot(o), za.dot(dir));
1283
1284 let g2 = a1.mul_add(a1, b1.mul_add(b1, c1 * c1));
1286 let g1 = 2.0 * a1.mul_add(a0, b1.mul_add(b0, c1 * c0));
1287 let g0 = a0.mul_add(
1288 a0,
1289 b0.mul_add(b0, c0.mul_add(c0, big_r.mul_add(big_r, -small_r * small_r))),
1290 );
1291
1292 let four_rr = 4.0 * big_r * big_r;
1294 let h2 = four_rr * a1.mul_add(a1, b1 * b1);
1295 let h1 = four_rr * (2.0 * a1.mul_add(a0, b1 * b0));
1296 let h0 = four_rr * a0.mul_add(a0, b0 * b0);
1297
1298 let e4 = g2 * g2;
1300 let e3 = 2.0 * g2 * g1;
1301 let e2 = g1.mul_add(g1, 2.0 * g2 * g0) - h2;
1302 let e1 = 2.0f64.mul_add(g1 * g0, -h1);
1303 let e0 = g0.mul_add(g0, -h0);
1304
1305 let mut roots = real_roots_quartic(e4, e3, e2, e1, e0);
1306 let impl_f = |t: f64| -> f64 {
1308 let p = origin + dir * t;
1309 let q = Vec3::new(p.x() - c.x(), p.y() - c.y(), p.z() - c.z());
1310 let (a, b, cc) = (xa.dot(q), ya.dot(q), za.dot(q));
1311 (a.hypot(b) - big_r).hypot(cc) - small_r
1312 };
1313 for t in &mut roots {
1314 let eps = 1e-7;
1315 let f = impl_f(*t);
1316 let df = (impl_f(*t + eps) - impl_f(*t - eps)) / (2.0 * eps);
1317 if df.abs() > 1e-12 {
1318 *t -= f / df;
1319 }
1320 }
1321 roots.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal));
1322 roots
1323}
1324
1325fn real_roots_quartic(c4: f64, c3: f64, c2: f64, c1: f64, c0: f64) -> Vec<f64> {
1328 if c4.abs() < 1e-14 {
1330 return real_roots_cubic(c3, c2, c1, c0);
1331 }
1332 let (a, b, c, d) = (c3 / c4, c2 / c4, c1 / c4, c0 / c4);
1334 let eval = |z: Complex| -> Complex {
1335 let mut acc = Complex::new(1.0, 0.0);
1337 acc = acc * z + Complex::new(a, 0.0);
1338 acc = acc * z + Complex::new(b, 0.0);
1339 acc = acc * z + Complex::new(c, 0.0);
1340 acc * z + Complex::new(d, 0.0)
1341 };
1342 let seed = Complex::new(0.4, 0.9);
1344 let mut r = [
1345 Complex::new(1.0, 0.0),
1346 seed,
1347 seed * seed,
1348 seed * seed * seed,
1349 ];
1350 for _ in 0..100 {
1351 let mut max_step = 0.0_f64;
1352 for i in 0..4 {
1353 let mut denom = Complex::new(1.0, 0.0);
1354 for j in 0..4 {
1355 if i != j {
1356 denom = denom * (r[i] - r[j]);
1357 }
1358 }
1359 if denom.norm() < 1e-300 {
1360 continue;
1361 }
1362 let step = eval(r[i]) / denom;
1363 r[i] = r[i] - step;
1364 max_step = max_step.max(step.norm());
1365 }
1366 if max_step < 1e-14 {
1367 break;
1368 }
1369 }
1370 let p_real = |x: f64| -> f64 { (((x + a) * x + b) * x + c) * x + d };
1377 let mut out: Vec<f64> = Vec::new();
1378 for z in r {
1379 if z.im.abs() >= 1e-7 {
1380 continue;
1381 }
1382 let x = z.re;
1383 let scale = 1.0 + a.abs() + b.abs() + c.abs() + d.abs() + x.abs().powi(4);
1386 if p_real(x).abs() > 1e-6 * scale {
1387 continue;
1388 }
1389 if out.iter().any(|&y| (y - x).abs() < 1e-9 * (1.0 + x.abs())) {
1390 continue;
1391 }
1392 out.push(x);
1393 }
1394 out
1395}
1396
1397fn real_roots_cubic(a: f64, b: f64, c: f64, d: f64) -> Vec<f64> {
1399 if a.abs() < 1e-14 {
1400 return real_roots_quadratic(b, c, d);
1401 }
1402 let (b, c, d) = (b / a, c / a, d / a);
1404 let p = c - b * b / 3.0;
1405 let q = 2.0 * b * b * b / 27.0 - b * c / 3.0 + d;
1406 let shift = -b / 3.0;
1407 let disc = q * q / 4.0 + p * p * p / 27.0;
1408 if disc > 1e-14 {
1409 let sq = disc.sqrt();
1410 let u = (-q / 2.0 + sq).cbrt();
1411 let v = (-q / 2.0 - sq).cbrt();
1412 vec![u + v + shift]
1413 } else if disc < -1e-14 {
1414 let m = 2.0 * (-p / 3.0).sqrt();
1416 let theta = (3.0 * q / (p * m)).clamp(-1.0, 1.0).acos() / 3.0;
1417 (0..3)
1418 .map(|k| {
1419 m.mul_add(
1420 (theta - 2.0 * std::f64::consts::PI * f64::from(k) / 3.0).cos(),
1421 shift,
1422 )
1423 })
1424 .collect()
1425 } else {
1426 let u = (-q / 2.0).cbrt();
1428 vec![2.0 * u + shift, -u + shift]
1429 }
1430}
1431
1432fn real_roots_quadratic(a: f64, b: f64, c: f64) -> Vec<f64> {
1434 if a.abs() < 1e-14 {
1435 if b.abs() < 1e-14 {
1436 return Vec::new();
1437 }
1438 return vec![-c / b];
1439 }
1440 let disc = b * b - 4.0 * a * c;
1441 if disc < 0.0 {
1442 Vec::new()
1443 } else {
1444 let sq = disc.sqrt();
1445 vec![(-b - sq) / (2.0 * a), (-b + sq) / (2.0 * a)]
1446 }
1447}
1448
1449#[derive(Clone, Copy)]
1451struct Complex {
1452 re: f64,
1453 im: f64,
1454}
1455
1456impl Complex {
1457 const fn new(re: f64, im: f64) -> Self {
1458 Self { re, im }
1459 }
1460 fn norm(self) -> f64 {
1461 self.re.hypot(self.im)
1462 }
1463}
1464
1465impl std::ops::Add for Complex {
1466 type Output = Self;
1467 fn add(self, o: Self) -> Self {
1468 Self::new(self.re + o.re, self.im + o.im)
1469 }
1470}
1471
1472impl std::ops::Sub for Complex {
1473 type Output = Self;
1474 fn sub(self, o: Self) -> Self {
1475 Self::new(self.re - o.re, self.im - o.im)
1476 }
1477}
1478
1479impl std::ops::Mul for Complex {
1480 type Output = Self;
1481 fn mul(self, o: Self) -> Self {
1482 Self::new(
1483 self.re.mul_add(o.re, -(self.im * o.im)),
1484 self.re.mul_add(o.im, self.im * o.re),
1485 )
1486 }
1487}
1488
1489impl std::ops::Div for Complex {
1490 type Output = Self;
1491 fn div(self, o: Self) -> Self {
1492 let den = o.re.mul_add(o.re, o.im * o.im);
1493 Self::new(
1494 self.re.mul_add(o.re, self.im * o.im) / den,
1495 self.im.mul_add(o.re, -(self.re * o.im)) / den,
1496 )
1497 }
1498}
1499
1500fn build_curves_from_points(
1504 points_3d: &[Point3],
1505 ipoints: Vec<IntersectionPoint>,
1506) -> Result<Vec<IntersectionCurve>, MathError> {
1507 if points_3d.len() < 2 {
1508 return Ok(vec![]);
1509 }
1510
1511 let degree = 3.min(points_3d.len() - 1);
1512 let curve = interpolate(points_3d, degree)?;
1513 Ok(vec![IntersectionCurve {
1514 curve,
1515 points: ipoints,
1516 }])
1517}
1518
1519#[allow(
1531 clippy::cast_precision_loss,
1532 clippy::too_many_lines,
1533 clippy::similar_names,
1534 clippy::unnecessary_wraps,
1535 clippy::type_complexity
1536)]
1537pub fn intersect_analytic_analytic(
1538 a: AnalyticSurface<'_>,
1539 b: AnalyticSurface<'_>,
1540 grid_res: usize,
1541) -> Result<Vec<IntersectionCurve>, MathError> {
1542 intersect_analytic_analytic_bounded(a, b, grid_res, None, None)
1543}
1544
1545pub fn intersect_analytic_analytic_bounded(
1556 a: AnalyticSurface<'_>,
1557 b: AnalyticSurface<'_>,
1558 grid_res: usize,
1559 v_range_hint_a: Option<(f64, f64)>,
1560 v_range_hint_b: Option<(f64, f64)>,
1561) -> Result<Vec<IntersectionCurve>, MathError> {
1562 if let Some(result) = try_algebraic_intersection(&a, &b, v_range_hint_a, v_range_hint_b)? {
1565 return Ok(result);
1566 }
1567
1568 let (surf_a, norm_a, u_range_a, default_v_a) = surface_closures(&a);
1569 let (surf_b, norm_b, u_range_b, default_v_b) = surface_closures(&b);
1570 let v_range_a = v_range_hint_a.unwrap_or(default_v_a);
1571 let v_range_b = v_range_hint_b.unwrap_or(default_v_b);
1572
1573 let diag_a = {
1575 let p00 = surf_a(u_range_a.0, v_range_a.0);
1576 let p11 = surf_a(u_range_a.1, v_range_a.1);
1577 (p00 - p11).length()
1578 };
1579 let diag_b = {
1580 let p00 = surf_b(u_range_b.0, v_range_b.0);
1581 let p11 = surf_b(u_range_b.1, v_range_b.1);
1582 (p00 - p11).length()
1583 };
1584 let char_size = diag_a.min(diag_b).max(0.1);
1585
1586 #[allow(clippy::type_complexity)]
1590 let mut seeds: Vec<(Point3, (f64, f64), (f64, f64))> = Vec::new();
1591 let seed_threshold = diag_a.max(diag_b).max(1.0) * 0.5;
1595 let mut min_dist = f64::INFINITY;
1596
1597 #[allow(clippy::cast_precision_loss)]
1598 for ia in 0..grid_res {
1599 for ja in 0..grid_res {
1600 let ua =
1601 u_range_a.0 + (u_range_a.1 - u_range_a.0) * (ia as f64 + 0.5) / (grid_res as f64);
1602 let va =
1603 v_range_a.0 + (v_range_a.1 - v_range_a.0) * (ja as f64 + 0.5) / (grid_res as f64);
1604
1605 let pa = surf_a(ua, va);
1606
1607 let (ub, vb) = project_analytic(&b, pa, u_range_b, v_range_b);
1609 let pb = surf_b(ub, vb);
1610 let dist = (pa - pb).length();
1611 min_dist = min_dist.min(dist);
1612
1613 if dist < seed_threshold {
1614 let mid = Point3::new(
1619 (pa.x() + pb.x()) * 0.5,
1620 (pa.y() + pb.y()) * 0.5,
1621 (pa.z() + pb.z()) * 0.5,
1622 );
1623 seeds.push((mid, (ua, va), (ub, vb)));
1624 }
1625 }
1626 }
1627
1628 let reject_dist = (char_size / grid_res as f64) * 3.0;
1637 if min_dist > reject_dist {
1638 return Ok(vec![]);
1639 }
1640
1641 if seeds.is_empty() {
1642 return Ok(vec![]);
1643 }
1644
1645 let march_step = (char_size * 0.02).clamp(0.005, 0.5);
1649 let dedup_radius = march_step * 10.0;
1650 let mut unique_seeds = Vec::new();
1651 for seed in &seeds {
1652 let dominated = unique_seeds
1653 .iter()
1654 .any(|s: &(Point3, (f64, f64), (f64, f64))| (s.0 - seed.0).length() < dedup_radius);
1655 if !dominated {
1656 unique_seeds.push(*seed);
1657 }
1658 }
1659
1660 let mut curves = Vec::new();
1662 let mut used_seeds = vec![false; unique_seeds.len()];
1663
1664 for si in 0..unique_seeds.len() {
1665 if used_seeds[si] {
1666 continue;
1667 }
1668 used_seeds[si] = true;
1669
1670 let march_result = march_analytic_intersection(
1671 &a,
1672 &b,
1673 surf_a.as_ref(),
1674 norm_a.as_ref(),
1675 surf_b.as_ref(),
1676 norm_b.as_ref(),
1677 unique_seeds[si].0,
1678 u_range_a,
1679 v_range_a,
1680 u_range_b,
1681 v_range_b,
1682 march_step,
1683 is_u_periodic(&a),
1684 is_u_periodic(&b),
1685 );
1686
1687 if march_result.len() >= 2 {
1688 for (sj, other) in unique_seeds.iter().enumerate() {
1689 if !used_seeds[sj]
1690 && march_result
1691 .iter()
1692 .any(|p| (*p - other.0).length() < dedup_radius)
1693 {
1694 used_seeds[sj] = true;
1695 }
1696 }
1697
1698 let ipts: Vec<IntersectionPoint> = march_result
1699 .iter()
1700 .map(|&pt| IntersectionPoint {
1701 point: pt,
1702 param1: (0.0, 0.0),
1703 param2: (0.0, 0.0),
1704 })
1705 .collect();
1706
1707 let degree = 3.min(march_result.len() - 1);
1708 if let Ok(curve) = interpolate(&march_result, degree) {
1709 curves.push(IntersectionCurve {
1710 curve,
1711 points: ipts,
1712 });
1713 }
1714 }
1715 }
1716
1717 Ok(curves)
1718}
1719
1720#[allow(clippy::too_many_lines)]
1730fn try_algebraic_intersection(
1731 a: &AnalyticSurface<'_>,
1732 b: &AnalyticSurface<'_>,
1733 v_range_a: Option<(f64, f64)>,
1734 v_range_b: Option<(f64, f64)>,
1735) -> Result<Option<Vec<IntersectionCurve>>, MathError> {
1736 match (a, b) {
1737 (AnalyticSurface::Cone(cone), AnalyticSurface::Cylinder(cyl)) => {
1738 algebraic_parallel_cone_cylinder(cone, cyl, v_range_a, v_range_b)
1739 }
1740 (AnalyticSurface::Cylinder(cyl), AnalyticSurface::Cone(cone)) => {
1741 algebraic_parallel_cone_cylinder(cone, cyl, v_range_b, v_range_a)
1742 }
1743 (AnalyticSurface::Sphere(s1), AnalyticSurface::Sphere(s2)) => {
1744 algebraic_sphere_sphere(s1, s2).map(Some)
1745 }
1746 (AnalyticSurface::Cylinder(c1), AnalyticSurface::Cylinder(c2)) => {
1747 let axis_dot = c1.axis().dot(c2.axis()).abs();
1748 if axis_dot > 1.0 - 1e-10 {
1749 let delta = c2.origin() - c1.origin();
1751 let delta_vec = Vec3::new(delta.x(), delta.y(), delta.z());
1752 let along = delta_vec.dot(c1.axis());
1753 let perp = (delta_vec - c1.axis() * along).length();
1754 if perp < 1e-8 {
1755 if (c1.radius() - c2.radius()).abs() < 1e-8 {
1758 return Ok(None); }
1760 return Ok(Some(vec![])); }
1762 }
1763 algebraic_cylinder_cylinder(c1, c2)
1765 }
1766 (AnalyticSurface::Sphere(s), AnalyticSurface::Cylinder(c)) => {
1768 algebraic_sphere_cylinder(s, c, true)
1769 }
1770 (AnalyticSurface::Cylinder(c), AnalyticSurface::Sphere(s)) => {
1771 algebraic_sphere_cylinder(s, c, false)
1772 }
1773 (AnalyticSurface::Cone(c1), AnalyticSurface::Cone(c2)) => algebraic_cone_cone(c1, c2),
1774 (AnalyticSurface::Torus(t), AnalyticSurface::Cylinder(c)) => {
1775 Ok(parallel_axis_torus_cylinder(t, c, true))
1776 }
1777 (AnalyticSurface::Cylinder(c), AnalyticSurface::Torus(t)) => {
1778 Ok(parallel_axis_torus_cylinder(t, c, false))
1779 }
1780 _ => Ok(None),
1781 }
1782}
1783
1784fn parallel_axis_torus_cylinder(
1791 torus: &ToroidalSurface,
1792 cyl: &CylindricalSurface,
1793 torus_first: bool,
1794) -> Option<Vec<IntersectionCurve>> {
1795 let axis = torus.z_axis();
1796 let along = cyl.axis().dot(axis);
1797 if along.abs() < 1.0 - 1e-10 {
1798 return None;
1799 }
1800 let offset = cyl.origin() - torus.center();
1801 if (offset - axis * offset.dot(axis)).length() < Tolerance::new().linear {
1802 return None;
1803 }
1804 let (major, minor) = (torus.major_radius(), torus.minor_radius());
1805 let roots = |u: f64| {
1806 let q = cyl.evaluate(u, 0.0) - torus.center();
1807 let height = q.dot(axis);
1808 let rho = (q - axis * height).length();
1809 let reach = minor * minor - (rho - major) * (rho - major);
1810 ruling_quadratic(1.0, 2.0 * along.signum() * height, height * height - reach)
1811 };
1812 let samples = ruling_samples(cyl, &roots);
1813 let loops = if samples.iter().all(Option::is_some) {
1814 closed_ruling_loops(&samples)
1815 } else {
1816 partial_ruling_loops(cyl, &roots, &samples)
1817 };
1818 if loops.is_empty() {
1819 return None;
1820 }
1821 Some(fit_ruling_loops(&loops, |p| {
1822 in_order(torus.project_point(p), cyl.project_point(p), torus_first)
1823 }))
1824}
1825
1826fn meridian_crossings(
1832 first: (f64, f64, f64),
1833 second: (f64, f64, f64),
1834 scale: f64,
1835) -> Option<Vec<(f64, f64)>> {
1836 let ((x1, z1, r1), (x2, z2, r2)) = (first, second);
1837 let (dx, dz) = (x2 - x1, z2 - z1);
1838 let dist = dx.hypot(dz);
1839 let slack = 1e-9 * scale;
1840 if dist < slack || (dist - (r1 + r2)).abs() < slack || (dist - (r1 - r2).abs()).abs() < slack {
1841 return None;
1842 }
1843 if dist > r1 + r2 || dist < (r1 - r2).abs() {
1844 return Some(Vec::new());
1845 }
1846 let along = r2.mul_add(-r2, r1.mul_add(r1, dist * dist)) / (2.0 * dist);
1847 let across = r1.mul_add(r1, -(along * along)).max(0.0).sqrt();
1848 let (ux, uz) = (dx / dist, dz / dist);
1849 let mut crossings = Vec::with_capacity(2);
1850 for side in [1.0, -1.0] {
1851 let rho = x1 + along * ux - side * across * uz;
1852 if rho <= slack {
1853 return None;
1854 }
1855 crossings.push((rho, z1 + along * uz + side * across * ux));
1856 }
1857 Some(crossings)
1858}
1859
1860fn circles_about_axis(
1862 base: Point3,
1863 axis: Vec3,
1864 crossings: &[(f64, f64)],
1865) -> Result<Vec<ExactIntersectionCurve>, MathError> {
1866 crossings
1867 .iter()
1868 .map(|&(rho, z)| {
1869 Circle3D::new(base + axis * z, axis, rho).map(ExactIntersectionCurve::Circle)
1870 })
1871 .collect()
1872}
1873
1874pub fn exact_torus_torus(
1885 first: &ToroidalSurface,
1886 second: &ToroidalSurface,
1887) -> Result<Option<Vec<ExactIntersectionCurve>>, MathError> {
1888 let axis = first.z_axis();
1889 let scale = first.major_radius() + second.major_radius();
1890 let offset = second.center() - first.center();
1891 if first.minor_radius() >= first.major_radius()
1893 || second.minor_radius() >= second.major_radius()
1894 || axis.cross(second.z_axis()).length() > 1e-9
1895 || offset.cross(axis).length() > 1e-9 * scale
1896 {
1897 return Ok(None);
1898 }
1899 let Some(crossings) = meridian_crossings(
1900 (first.major_radius(), 0.0, first.minor_radius()),
1901 (
1902 second.major_radius(),
1903 offset.dot(axis),
1904 second.minor_radius(),
1905 ),
1906 scale,
1907 ) else {
1908 return Ok(None);
1909 };
1910 circles_about_axis(first.center(), axis, &crossings).map(Some)
1911}
1912
1913pub fn exact_cylinder_torus(
1925 cylinder: &CylindricalSurface,
1926 torus: &ToroidalSurface,
1927) -> Result<Option<Vec<ExactIntersectionCurve>>, MathError> {
1928 let axis = torus.z_axis();
1929 let scale = torus.major_radius() + cylinder.radius();
1930 let offset = cylinder.origin() - torus.center();
1931 if torus.minor_radius() >= torus.major_radius()
1933 || axis.cross(cylinder.axis()).length() > 1e-9
1934 || offset.cross(axis).length() > 1e-9 * scale
1935 {
1936 return Ok(None);
1937 }
1938 let gap = cylinder.radius() - torus.major_radius();
1939 let small = torus.minor_radius();
1940 if (gap.abs() - small).abs() < 1e-9 * scale {
1941 return Ok(None);
1942 }
1943 if gap.abs() > small {
1944 return Ok(Some(Vec::new()));
1945 }
1946 let height = small.mul_add(small, -(gap * gap)).sqrt();
1947 circles_about_axis(
1948 torus.center(),
1949 axis,
1950 &[(cylinder.radius(), height), (cylinder.radius(), -height)],
1951 )
1952 .map(Some)
1953}
1954
1955pub fn exact_sphere_torus(
1968 sphere: &SphericalSurface,
1969 torus: &ToroidalSurface,
1970) -> Result<Option<Vec<ExactIntersectionCurve>>, MathError> {
1971 let axis = torus.z_axis();
1972 let scale = torus.major_radius() + sphere.radius();
1973 let offset = sphere.center() - torus.center();
1974 if torus.minor_radius() >= torus.major_radius() || offset.cross(axis).length() > 1e-9 * scale {
1976 return Ok(None);
1977 }
1978 let Some(crossings) = meridian_crossings(
1979 (0.0, offset.dot(axis), sphere.radius()),
1980 (torus.major_radius(), 0.0, torus.minor_radius()),
1981 scale,
1982 ) else {
1983 return Ok(None);
1984 };
1985 circles_about_axis(torus.center(), axis, &crossings).map(Some)
1986}
1987
1988pub fn exact_cone_cone(
2013 c1: &ConicalSurface,
2014 c2: &ConicalSurface,
2015) -> Result<Option<Vec<ExactIntersectionCurve>>, MathError> {
2016 let axis = c1.axis();
2017 let axis2 = c2.axis();
2018
2019 if axis.dot(axis2).abs() < 1.0 - 1e-10 {
2021 return Ok(None); }
2023 let apex1 = c1.apex();
2024 let apex2 = c2.apex();
2025 let delta = apex2 - apex1;
2026 let delta_v = Vec3::new(delta.x(), delta.y(), delta.z());
2027 let along = delta_v.dot(axis);
2028 if (delta_v - axis * along).length() > 1e-8 {
2029 return offset_parallel_cone_cone(c1, c2);
2030 }
2031
2032 let (s1, s2) = (c1.half_angle().sin(), c2.half_angle().sin());
2033 if s1.abs() < 1e-12 || s2.abs() < 1e-12 {
2034 return Ok(None); }
2036 let m1 = c1.half_angle().cos() / s1;
2037 let m2 = c2.half_angle().cos() / s2;
2038 let sigma = if axis.dot(axis2) >= 0.0 { 1.0 } else { -1.0 };
2039 let d2 = along; let denom = m1 - m2 * sigma;
2042 if denom.abs() < 1e-12 {
2043 if sigma > 0.0 && d2.abs() < 1e-9 {
2046 return Ok(None);
2047 }
2048 return Ok(Some(vec![]));
2049 }
2050
2051 let t_star = (-m2 * sigma * d2) / denom;
2052 let radius = m1 * t_star;
2053 if radius < 1e-12 {
2054 return Ok(Some(vec![])); }
2056
2057 let center = Point3::new(
2058 apex1.x() + axis.x() * t_star,
2059 apex1.y() + axis.y() * t_star,
2060 apex1.z() + axis.z() * t_star,
2061 );
2062 let circle = Circle3D::new(center, axis, radius)?;
2063 Ok(Some(vec![ExactIntersectionCurve::Circle(circle)]))
2064}
2065
2066fn offset_parallel_cone_cone(
2077 c1: &ConicalSurface,
2078 c2: &ConicalSurface,
2079) -> Result<Option<Vec<ExactIntersectionCurve>>, MathError> {
2080 if c1.half_angle().sin().abs() < 1e-12 || c2.half_angle().sin().abs() < 1e-12 {
2081 return Ok(None); }
2083 let t1 = c1.half_angle().tan();
2084 let t2 = c2.half_angle().tan();
2085 if !t1.is_finite() || !t2.is_finite() {
2086 return Ok(None);
2087 }
2088 if (t1 - t2).abs() > 1e-9 * (1.0 + t1.abs().max(t2.abs())) {
2089 return Ok(None);
2090 }
2091
2092 let w = c1.axis();
2093 let apex1 = c1.apex();
2094 let apex2 = c2.apex();
2095 let delta = apex2 - apex1;
2096 let delta_v = Vec3::new(delta.x(), delta.y(), delta.z());
2097 let s = delta_v.dot(w);
2098 let tm = 0.5 * (t1 + t2);
2099 let k = 1.0 + tm * tm;
2100
2101 let n = (delta_v - w * (k * s)) * 2.0;
2105 let n_len = n.length();
2106 if n_len < 1e-12 {
2107 return Ok(None);
2108 }
2109 let n_hat = n * (1.0 / n_len);
2110 let d = (dot_np(n, apex1) + delta_v.dot(delta_v) - k * s * s) / n_len;
2111
2112 let axis2 = c2.axis();
2118 let scale = 1.0 + delta_v.length();
2119 let mut out = Vec::new();
2120 for curve in exact_plane_cone(c1, n_hat, d, 0.0)? {
2121 let samples: Vec<Point3> = match &curve {
2122 ExactIntersectionCurve::Circle(c) => (0..4)
2123 .map(|i| crate::traits::ParametricCurve::evaluate(c, TAU * f64::from(i) / 4.0))
2124 .collect(),
2125 ExactIntersectionCurve::Ellipse(e) => (0..4)
2126 .map(|i| crate::traits::ParametricCurve::evaluate(e, TAU * f64::from(i) / 4.0))
2127 .collect(),
2128 ExactIntersectionCurve::Points(_) => return Ok(None),
2129 };
2130 let on_real_nappe = |p: &Point3| {
2131 let rel = *p - apex2;
2132 Vec3::new(rel.x(), rel.y(), rel.z()).dot(axis2) >= -1e-9 * scale
2133 };
2134 let hits = samples.iter().filter(|p| on_real_nappe(p)).count();
2135 match hits {
2136 0 => {}
2137 4 => out.push(curve),
2138 _ => return Ok(None),
2139 }
2140 }
2141 Ok(Some(out))
2142}
2143
2144pub fn exact_cone_cylinder(
2164 cone: &ConicalSurface,
2165 cyl: &CylindricalSurface,
2166) -> Result<Option<Vec<ExactIntersectionCurve>>, MathError> {
2167 let axis = cone.axis();
2168 let cyl_axis = cyl.axis();
2169
2170 if axis.dot(cyl_axis).abs() < 1.0 - 1e-10 {
2172 return Ok(None);
2173 }
2174 let apex = cone.apex();
2175 let delta = apex - cyl.origin();
2176 let delta_v = Vec3::new(delta.x(), delta.y(), delta.z());
2177 let along = delta_v.dot(cyl_axis);
2178 if (delta_v - cyl_axis * along).length() > 1e-8 {
2179 return Ok(None);
2180 }
2181
2182 let s = cone.half_angle().sin();
2183 if s.abs() < 1e-12 {
2184 return Ok(None); }
2186 let m = cone.half_angle().cos() / s; if m.abs() < 1e-12 {
2188 return Ok(None); }
2190
2191 let t_star = cyl.radius() / m; if t_star.abs() < 1e-12 {
2193 return Ok(Some(vec![])); }
2195 let center = Point3::new(
2196 apex.x() + axis.x() * t_star,
2197 apex.y() + axis.y() * t_star,
2198 apex.z() + axis.z() * t_star,
2199 );
2200 let circle = Circle3D::new(center, axis, cyl.radius())?;
2201 Ok(Some(vec![ExactIntersectionCurve::Circle(circle)]))
2202}
2203
2204fn algebraic_cone_cone(
2213 c1: &ConicalSurface,
2214 c2: &ConicalSurface,
2215) -> Result<Option<Vec<IntersectionCurve>>, MathError> {
2216 let Some(exacts) = exact_cone_cone(c1, c2)? else {
2217 return Ok(None);
2218 };
2219 let mut curves = Vec::new();
2220 for exact in exacts {
2221 let n_samples = 33;
2222 let mut positions = Vec::with_capacity(n_samples);
2223 let mut points = Vec::with_capacity(n_samples);
2224 #[allow(clippy::cast_precision_loss)]
2225 for i in 0..n_samples {
2226 let theta = TAU * i as f64 / (n_samples - 1) as f64;
2227 let pt = match &exact {
2228 ExactIntersectionCurve::Circle(circle) => {
2229 crate::traits::ParametricCurve::evaluate(circle, theta)
2230 }
2231 ExactIntersectionCurve::Ellipse(ellipse) => {
2232 crate::traits::ParametricCurve::evaluate(ellipse, theta)
2233 }
2234 ExactIntersectionCurve::Points(_) => break,
2235 };
2236 positions.push(pt);
2237 points.push(IntersectionPoint {
2238 point: pt,
2239 param1: (0.0, 0.0),
2240 param2: (0.0, 0.0),
2241 });
2242 }
2243 if positions.is_empty() {
2244 continue;
2245 }
2246 let degree = 3.min(positions.len() - 1);
2247 let curve = interpolate(&positions, degree)?;
2248 curves.push(IntersectionCurve { curve, points });
2249 }
2250 Ok(Some(curves))
2251}
2252
2253pub fn exact_sphere_cylinder(
2273 sphere: &SphericalSurface,
2274 cyl: &CylindricalSurface,
2275) -> Result<Option<Vec<ExactIntersectionCurve>>, MathError> {
2276 let sc = sphere.center();
2277 let r_sphere = sphere.radius();
2278 let co = cyl.origin();
2279 let axis = cyl.axis();
2280 let r_cyl = cyl.radius();
2281
2282 let delta = sc - co;
2284 let delta_vec = Vec3::new(delta.x(), delta.y(), delta.z());
2285 let along = delta_vec.dot(axis);
2286 let perp_vec = delta_vec - axis * along;
2287 let d_perp = perp_vec.length();
2288
2289 if d_perp > 1e-7 {
2292 return Ok(None);
2293 }
2294
2295 if r_cyl > r_sphere + 1e-10 {
2298 return Ok(Some(vec![]));
2299 }
2300 let z_sq = r_sphere * r_sphere - r_cyl * r_cyl;
2301 if z_sq < 0.0 {
2302 return Ok(Some(vec![]));
2303 }
2304 let z = z_sq.sqrt();
2305
2306 let center_axis_pt = Point3::new(
2309 co.x() + axis.x() * along,
2310 co.y() + axis.y() * along,
2311 co.z() + axis.z() * along,
2312 );
2313
2314 let mut circles = Vec::new();
2315 let offsets: &[f64] = if z < 1e-10 { &[0.0] } else { &[z, -z] };
2316 for &z_offset in offsets {
2317 let center = Point3::new(
2318 center_axis_pt.x() + axis.x() * z_offset,
2319 center_axis_pt.y() + axis.y() * z_offset,
2320 center_axis_pt.z() + axis.z() * z_offset,
2321 );
2322 let circle = Circle3D::new(center, axis, r_cyl)?;
2323 circles.push(ExactIntersectionCurve::Circle(circle));
2324 }
2325 Ok(Some(circles))
2326}
2327
2328fn algebraic_sphere_cylinder(
2337 sphere: &SphericalSurface,
2338 cyl: &CylindricalSurface,
2339 sphere_first: bool,
2340) -> Result<Option<Vec<IntersectionCurve>>, MathError> {
2341 let Some(exacts) = exact_sphere_cylinder(sphere, cyl)? else {
2342 return Ok(off_axis_sphere_cylinder(sphere, cyl, sphere_first));
2343 };
2344
2345 let mut curves = Vec::new();
2346 for exact in exacts {
2347 let ExactIntersectionCurve::Circle(circle) = exact else {
2348 continue;
2349 };
2350 let n_samples = 33;
2351 let mut points = Vec::with_capacity(n_samples);
2352 let mut positions = Vec::with_capacity(n_samples);
2353 #[allow(clippy::cast_precision_loss)]
2354 for i in 0..n_samples {
2355 let theta = TAU * i as f64 / (n_samples - 1) as f64;
2356 let pt = crate::traits::ParametricCurve::evaluate(&circle, theta);
2357 positions.push(pt);
2358 let (param1, param2) = in_order(
2359 sphere.project_point(pt),
2360 cyl.project_point(pt),
2361 sphere_first,
2362 );
2363 points.push(IntersectionPoint {
2364 point: pt,
2365 param1,
2366 param2,
2367 });
2368 }
2369 let degree = 3.min(positions.len() - 1);
2370 let curve = interpolate(&positions, degree)?;
2371 curves.push(IntersectionCurve { curve, points });
2372 }
2373
2374 Ok(Some(curves))
2375}
2376
2377fn off_axis_sphere_cylinder(
2386 sphere: &SphericalSurface,
2387 cyl: &CylindricalSurface,
2388 sphere_first: bool,
2389) -> Option<Vec<IntersectionCurve>> {
2390 let (centre, radius) = (sphere.center(), sphere.radius());
2391 let axis = cyl.axis();
2392 let offset = centre - cyl.origin();
2393 let axis_distance = (offset - axis * offset.dot(axis)).length();
2394 let lin_tol = Tolerance::new().linear;
2395 if axis_distance > radius + cyl.radius() + lin_tol
2396 || axis_distance + radius < cyl.radius() - lin_tol
2397 {
2398 return Some(Vec::new());
2399 }
2400 let roots = |u: f64| {
2401 let q = cyl.evaluate(u, 0.0) - centre;
2402 ruling_quadratic(1.0, 2.0 * q.dot(axis), q.dot(q) - radius * radius)
2403 };
2404 let samples = ruling_samples(cyl, &roots);
2405 let loops = if samples.iter().all(Option::is_some) {
2406 closed_ruling_loops(&samples)
2407 } else {
2408 partial_ruling_loops(cyl, &roots, &samples)
2409 };
2410 if loops.is_empty() {
2411 return None;
2412 }
2413 Some(fit_ruling_loops(&loops, |p| {
2414 in_order(sphere.project_point(p), cyl.project_point(p), sphere_first)
2415 }))
2416}
2417
2418const fn in_order(a: (f64, f64), b: (f64, f64), a_first: bool) -> ((f64, f64), (f64, f64)) {
2421 if a_first { (a, b) } else { (b, a) }
2422}
2423
2424#[allow(clippy::too_many_lines, clippy::unnecessary_wraps)]
2438fn algebraic_cylinder_cylinder(
2439 c1: &CylindricalSurface,
2440 c2: &CylindricalSurface,
2441) -> Result<Option<Vec<IntersectionCurve>>, MathError> {
2442 let alpha = c1.axis().dot(c2.axis());
2443 let a_coeff = 1.0 - alpha * alpha;
2444
2445 if a_coeff.abs() < 1e-12 {
2447 return Ok(None);
2448 }
2449
2450 let r1 = c1.radius();
2451 let r2 = c2.radius();
2452 let o1 = c1.origin();
2453 let o2 = c2.origin();
2454 let a1 = c1.axis();
2455 let a2 = c2.axis();
2456
2457 let delta = Vec3::new(o1.x() - o2.x(), o1.y() - o2.y(), o1.z() - o2.z());
2460 let cross = a1.cross(a2);
2461 let cross_len = cross.length();
2462 if cross_len > 1e-12 {
2463 let axis_dist = delta.dot(cross).abs() / cross_len;
2464 if axis_dist > r1 + r2 + Tolerance::new().linear {
2465 return Ok(Some(vec![])); }
2467 }
2468
2469 let roots = |sweep: &CylindricalSurface, other: &CylindricalSurface| {
2475 let (o, a, radius) = (other.origin(), other.axis(), other.radius());
2476 let alpha = sweep.axis().dot(a);
2477 let quad = 1.0 - alpha * alpha;
2478 let (axis, sweep) = (sweep.axis(), sweep.clone());
2479 move |u: f64| {
2480 let q = sweep.evaluate(u, 0.0) - o;
2481 let (q_a1, q_a2) = (q.dot(axis), q.dot(a));
2482 let b = 2.0 * (q_a1 - alpha * q_a2);
2483 let c = q.dot(q) - q_a2 * q_a2 - radius * radius;
2484 ruling_quadratic(quad, b, c)
2485 }
2486 };
2487 let (roots1, roots2) = (roots(c1, c2), roots(c2, c1));
2488 let samples1 = ruling_samples(c1, &roots1);
2489 let loops = if samples1.iter().all(Option::is_some) {
2490 closed_ruling_loops(&samples1)
2491 } else {
2492 let samples2 = ruling_samples(c2, &roots2);
2493 if samples2.iter().all(Option::is_some) {
2494 closed_ruling_loops(&samples2)
2495 } else if samples1.iter().any(Option::is_some) {
2496 partial_ruling_loops(c1, &roots1, &samples1)
2497 } else {
2498 partial_ruling_loops(c2, &roots2, &samples2)
2499 }
2500 };
2501 if loops.is_empty() {
2502 return Ok(None);
2503 }
2504 Ok(Some(fit_ruling_loops(&loops, |p| {
2505 (c1.project_point(p), c2.project_point(p))
2506 })))
2507}
2508
2509const RULING_SAMPLES: usize = 128;
2513
2514#[allow(clippy::cast_precision_loss)]
2515fn ruling_u(i: usize) -> f64 {
2516 TAU * (i as f64 + 0.5) / RULING_SAMPLES as f64
2517}
2518
2519fn ruling_quadratic(quad: f64, b: f64, c: f64) -> (f64, f64, f64) {
2521 let disc = b * b - 4.0 * quad * c;
2522 let root = disc.max(0.0).sqrt();
2523 (disc, (-b + root) / (2.0 * quad), (-b - root) / (2.0 * quad))
2524}
2525
2526fn ruling_samples(
2530 sweep: &CylindricalSurface,
2531 roots: &impl Fn(f64) -> (f64, f64, f64),
2532) -> Vec<Option<(Point3, Point3)>> {
2533 let lin_tol = Tolerance::new().linear;
2534 (0..RULING_SAMPLES)
2535 .map(|i| {
2536 let u = ruling_u(i);
2537 let (disc, vp, vm) = roots(u);
2538 (disc >= -lin_tol).then(|| (sweep.evaluate(u, vp), sweep.evaluate(u, vm)))
2539 })
2540 .collect()
2541}
2542
2543fn closed_ruling_loops(samples: &[Option<(Point3, Point3)>]) -> Vec<Vec<Point3>> {
2545 let mut plus: Vec<Point3> = samples.iter().flatten().map(|s| s.0).collect();
2546 let mut minus: Vec<Point3> = samples.iter().flatten().map(|s| s.1).collect();
2547 plus.push(plus[0]);
2548 minus.push(minus[0]);
2549 vec![plus, minus]
2550}
2551
2552fn partial_ruling_loops(
2557 sweep: &CylindricalSurface,
2558 roots: &impl Fn(f64) -> (f64, f64, f64),
2559 samples: &[Option<(Point3, Point3)>],
2560) -> Vec<Vec<Point3>> {
2561 let branch_point = |inside: usize, outside: usize| -> Point3 {
2562 let (mut lo, mut hi) = (ruling_u(inside), ruling_u(outside));
2563 if (hi - lo).abs() > std::f64::consts::PI {
2564 hi += if hi < lo { TAU } else { -TAU };
2565 }
2566 for _ in 0..60 {
2567 let mid = 0.5 * (lo + hi);
2568 if roots(mid).0 >= 0.0 {
2569 lo = mid;
2570 } else {
2571 hi = mid;
2572 }
2573 }
2574 let (_, vp, vm) = roots(lo);
2575 sweep.evaluate(lo, 0.5 * (vp + vm))
2576 };
2577 let Some(first_gap) = samples.iter().position(Option::is_none) else {
2578 return Vec::new();
2579 };
2580 let mut loops = Vec::new();
2581 let mut k = 0;
2582 while k < RULING_SAMPLES {
2583 let i = (first_gap + k) % RULING_SAMPLES;
2584 if samples[i].is_none() {
2585 k += 1;
2586 continue;
2587 }
2588 let start = i;
2589 let mut run = Vec::new();
2590 while k < RULING_SAMPLES {
2591 let j = (first_gap + k) % RULING_SAMPLES;
2592 let Some(pair) = samples[j] else { break };
2593 run.push(pair);
2594 k += 1;
2595 }
2596 let end = (start + run.len() - 1) % RULING_SAMPLES;
2597 let head = branch_point(start, (start + RULING_SAMPLES - 1) % RULING_SAMPLES);
2598 let tail = branch_point(end, (end + 1) % RULING_SAMPLES);
2599 let mut pts = vec![head];
2600 pts.extend(run.iter().map(|p| p.0));
2601 pts.push(tail);
2602 pts.extend(run.iter().rev().map(|p| p.1));
2603 pts.push(head);
2604 loops.push(pts);
2605 }
2606 loops
2607}
2608
2609fn fit_ruling_loops(
2612 loops: &[Vec<Point3>],
2613 params: impl Fn(Point3) -> ((f64, f64), (f64, f64)),
2614) -> Vec<IntersectionCurve> {
2615 let mut curves = Vec::new();
2616 for pts in loops {
2617 if pts.len() < 4 {
2618 continue;
2619 }
2620 let ipts: Vec<IntersectionPoint> = pts
2621 .iter()
2622 .map(|&p| {
2623 let (param1, param2) = params(p);
2624 IntersectionPoint {
2625 point: p,
2626 param1,
2627 param2,
2628 }
2629 })
2630 .collect();
2631 let degree = 3.min(pts.len() - 1);
2632 if let Ok(curve) = interpolate(pts, degree) {
2633 curves.push(IntersectionCurve {
2634 curve,
2635 points: ipts,
2636 });
2637 }
2638 }
2639 curves
2640}
2641
2642#[allow(clippy::unnecessary_wraps)]
2668fn algebraic_parallel_cone_cylinder(
2669 cone: &ConicalSurface,
2670 cyl: &CylindricalSurface,
2671 v_range_cone: Option<(f64, f64)>,
2672 v_range_cyl: Option<(f64, f64)>,
2673) -> Result<Option<Vec<IntersectionCurve>>, MathError> {
2674 let axis = cone.axis();
2675 if axis.dot(cyl.axis()).abs() < 1.0 - 1e-10 {
2676 return Ok(None); }
2678
2679 let apex = cone.apex();
2680 let delta = cyl.origin() - apex;
2681 let along = delta.dot(axis);
2682 let perp = delta - axis * along;
2683 let d = perp.length();
2684 if d < 1e-9 {
2685 return Ok(None); }
2687
2688 let (e1, e2) = (cone.x_axis(), cone.y_axis());
2689 let phi0 = perp.dot(e2).atan2(perp.dot(e1));
2690
2691 let (sin_t, cos_t) = cone.half_angle().sin_cos();
2692 if cos_t < 1e-12 || sin_t < 1e-12 {
2693 return Ok(None);
2694 }
2695 let r = cyl.radius();
2696
2697 let mut v_min = (d - r).abs() / cos_t;
2699 let mut v_max = (d + r) / cos_t;
2700 if v_max <= v_min {
2701 return Ok(Some(vec![]));
2702 }
2703
2704 let mut lo = v_min;
2710 let mut hi = v_max;
2711 if let Some((a, b)) = v_range_cone {
2716 let (a, b) = if a <= b { (a, b) } else { (b, a) };
2717 lo = lo.max(a);
2718 hi = hi.min(b);
2719 }
2720 if let Some((a, b)) = v_range_cyl {
2721 let flip = cyl.axis().dot(axis);
2724 let to_cone_v = |cv: f64| (along + cv * flip) / sin_t;
2725 let (a, b) = (to_cone_v(a), to_cone_v(b));
2726 let (a, b) = if a <= b { (a, b) } else { (b, a) };
2727 lo = lo.max(a);
2728 hi = hi.min(b);
2729 }
2730 v_min = lo.max(v_min);
2731 v_max = hi.min(v_max);
2732 if v_max - v_min <= 1e-12 {
2733 return Ok(Some(vec![]));
2734 }
2735
2736 let n_samples = 128;
2737 let mut plus: Vec<Point3> = Vec::with_capacity(n_samples + 1);
2738 let mut minus: Vec<Point3> = Vec::with_capacity(n_samples + 1);
2739 #[allow(clippy::cast_precision_loss)]
2740 for i in 0..=n_samples {
2741 let v = v_min + (v_max - v_min) * (i as f64) / (n_samples as f64);
2742 let rho = v * cos_t;
2743 if rho < 1e-12 {
2744 if (d - r).abs() < 1e-12 {
2752 let apex = cone.evaluate(phi0, v);
2753 plus.push(apex);
2754 minus.push(apex);
2755 }
2756 continue;
2757 }
2758 let cos_alpha = ((d * d + rho * rho - r * r) / (2.0 * d * rho)).clamp(-1.0, 1.0);
2759 let alpha = cos_alpha.acos();
2760 plus.push(cone.evaluate(phi0 + alpha, v));
2761 minus.push(cone.evaluate(phi0 - alpha, v));
2762 }
2763
2764 let mut curves = Vec::new();
2765 for pts in [&plus, &minus] {
2766 if pts.len() < 4 {
2769 continue;
2770 }
2771 let ipts: Vec<IntersectionPoint> = pts
2772 .iter()
2773 .map(|&p| IntersectionPoint {
2774 point: p,
2775 param1: cone.project_point(p),
2776 param2: cyl.project_point(p),
2777 })
2778 .collect();
2779 let degree = 3.min(pts.len() - 1);
2780 match interpolate(pts, degree) {
2781 Ok(curve) => curves.push(IntersectionCurve {
2782 curve,
2783 points: ipts,
2784 }),
2785 Err(_) => return Ok(None),
2790 }
2791 }
2792
2793 Ok(Some(curves))
2794}
2795
2796fn algebraic_sphere_sphere(
2804 s1: &SphericalSurface,
2805 s2: &SphericalSurface,
2806) -> Result<Vec<IntersectionCurve>, MathError> {
2807 let c1 = s1.center();
2808 let c2 = s2.center();
2809 let r1 = s1.radius();
2810 let r2 = s2.radius();
2811
2812 let delta = c2 - c1;
2813 let d_sq = delta.x() * delta.x() + delta.y() * delta.y() + delta.z() * delta.z();
2814 let d = d_sq.sqrt();
2815
2816 if d < 1e-12 {
2817 return Ok(vec![]);
2819 }
2820
2821 if d > r1 + r2 + 1e-10 {
2823 return Ok(vec![]); }
2825 if d + r2.min(r1) + 1e-10 < r1.max(r2) {
2826 return Ok(vec![]); }
2828
2829 let d1 = (d_sq + r1 * r1 - r2 * r2) / (2.0 * d);
2831
2832 let r_circle_sq = r1 * r1 - d1 * d1;
2834 if r_circle_sq < 0.0 {
2835 if r_circle_sq > -1e-10 {
2837 let axis = Vec3::new(delta.x() / d, delta.y() / d, delta.z() / d);
2839 let tangent_pt = Point3::new(
2840 c1.x() + axis.x() * d1,
2841 c1.y() + axis.y() * d1,
2842 c1.z() + axis.z() * d1,
2843 );
2844 let ipt = IntersectionPoint {
2845 point: tangent_pt,
2846 param1: (0.0, 0.0),
2847 param2: (0.0, 0.0),
2848 };
2849 return Ok(vec![IntersectionCurve {
2851 curve: interpolate(&[tangent_pt, tangent_pt], 1)?,
2852 points: vec![ipt],
2853 }]);
2854 }
2855 return Ok(vec![]);
2856 }
2857
2858 let r_circle = r_circle_sq.sqrt();
2859 let axis = Vec3::new(delta.x() / d, delta.y() / d, delta.z() / d);
2860 let center = Point3::new(
2861 c1.x() + axis.x() * d1,
2862 c1.y() + axis.y() * d1,
2863 c1.z() + axis.z() * d1,
2864 );
2865
2866 let basis = Frame3::from_normal(center, axis)?;
2868 let u_dir = basis.x;
2869 let v_dir = basis.y;
2870
2871 let n_samples = 33; let mut points = Vec::with_capacity(n_samples);
2874 let mut positions = Vec::with_capacity(n_samples);
2875 #[allow(clippy::cast_precision_loss)]
2876 for i in 0..n_samples {
2877 let theta = TAU * i as f64 / (n_samples - 1) as f64;
2878 let (sin_t, cos_t) = theta.sin_cos();
2879 let pt = Point3::new(
2880 center.x() + (u_dir.x() * cos_t + v_dir.x() * sin_t) * r_circle,
2881 center.y() + (u_dir.y() * cos_t + v_dir.y() * sin_t) * r_circle,
2882 center.z() + (u_dir.z() * cos_t + v_dir.z() * sin_t) * r_circle,
2883 );
2884 positions.push(pt);
2885 points.push(IntersectionPoint {
2886 point: pt,
2887 param1: (0.0, 0.0),
2888 param2: (0.0, 0.0),
2889 });
2890 }
2891
2892 let degree = 3.min(positions.len() - 1);
2893 let curve = interpolate(&positions, degree)?;
2894
2895 Ok(vec![IntersectionCurve { curve, points }])
2896}
2897
2898#[allow(clippy::too_many_arguments)]
2904fn correct_to_intersection(
2905 a: &AnalyticSurface<'_>,
2906 b: &AnalyticSurface<'_>,
2907 surf_a: &dyn Fn(f64, f64) -> Point3,
2908 norm_a: &dyn Fn(f64, f64) -> Vec3,
2909 surf_b: &dyn Fn(f64, f64) -> Point3,
2910 norm_b: &dyn Fn(f64, f64) -> Vec3,
2911 point: Point3,
2912 u_range_a: (f64, f64),
2913 v_range_a: (f64, f64),
2914 u_range_b: (f64, f64),
2915 v_range_b: (f64, f64),
2916 max_iters: usize,
2917) -> Point3 {
2918 let mut p = point;
2919 for _ in 0..max_iters {
2920 let (ua, va) = project_analytic(a, p, u_range_a, v_range_a);
2921 let (ub, vb) = project_analytic(b, p, u_range_b, v_range_b);
2922 let pa = surf_a(ua, va);
2923 let pb = surf_b(ub, vb);
2924 let na = norm_a(ua, va);
2925 let nb = norm_b(ub, vb);
2926 let pv = Vec3::new(p.x(), p.y(), p.z());
2927
2928 let da = (pv - Vec3::new(pa.x(), pa.y(), pa.z())).dot(na);
2929 let db = (pv - Vec3::new(pb.x(), pb.y(), pb.z())).dot(nb);
2930
2931 if da.abs() < 1e-7 && db.abs() < 1e-7 {
2932 break;
2933 }
2934
2935 let t = na.cross(nb);
2936 let t_len = t.length();
2937 if t_len < 1e-10 {
2938 return Point3::new(
2940 (pa.x() + pb.x()) * 0.5,
2941 (pa.y() + pb.y()) * 0.5,
2942 (pa.z() + pb.z()) * 0.5,
2943 );
2944 }
2945 let t_hat = t * (1.0 / t_len);
2946
2947 let det = na.x() * (nb.y() * t_hat.z() - nb.z() * t_hat.y())
2949 - na.y() * (nb.x() * t_hat.z() - nb.z() * t_hat.x())
2950 + na.z() * (nb.x() * t_hat.y() - nb.y() * t_hat.x());
2951 if det.abs() < 1e-15 {
2952 return Point3::new(
2953 (pa.x() + pb.x()) * 0.5,
2954 (pa.y() + pb.y()) * 0.5,
2955 (pa.z() + pb.z()) * 0.5,
2956 );
2957 }
2958 let inv = 1.0 / det;
2959 let dx = inv
2961 * (-da * (nb.y() * t_hat.z() - nb.z() * t_hat.y())
2962 + db * (na.y() * t_hat.z() - na.z() * t_hat.y()));
2963 let dy = inv
2964 * (da * (nb.x() * t_hat.z() - nb.z() * t_hat.x())
2965 - db * (na.x() * t_hat.z() - na.z() * t_hat.x()));
2966 let dz = inv
2967 * (-da * (nb.x() * t_hat.y() - nb.y() * t_hat.x())
2968 + db * (na.x() * t_hat.y() - na.y() * t_hat.x()));
2969 let candidate = Point3::new(p.x() + dx, p.y() + dy, p.z() + dz);
2970
2971 let (uc, vc) = project_analytic(a, candidate, u_range_a, v_range_a);
2974 let (ud, vd) = project_analytic(b, candidate, u_range_b, v_range_b);
2975 let pc_a = surf_a(uc, vc);
2976 let pc_b = surf_b(ud, vd);
2977 let cv = Vec3::new(candidate.x(), candidate.y(), candidate.z());
2978 let da_new = (cv - Vec3::new(pc_a.x(), pc_a.y(), pc_a.z()))
2979 .dot(norm_a(uc, vc))
2980 .abs();
2981 let db_new = (cv - Vec3::new(pc_b.x(), pc_b.y(), pc_b.z()))
2982 .dot(norm_b(ud, vd))
2983 .abs();
2984 if da_new > da.abs() && db_new > db.abs() {
2985 return p;
2986 }
2987
2988 p = candidate;
2989 }
2990 p
2991}
2992
2993#[allow(clippy::too_many_arguments)]
2999fn march_analytic_intersection(
3000 a: &AnalyticSurface<'_>,
3001 b: &AnalyticSurface<'_>,
3002 surf_a: &dyn Fn(f64, f64) -> Point3,
3003 norm_a: &dyn Fn(f64, f64) -> Vec3,
3004 surf_b: &dyn Fn(f64, f64) -> Point3,
3005 norm_b: &dyn Fn(f64, f64) -> Vec3,
3006 seed: Point3,
3007 u_range_a: (f64, f64),
3008 v_range_a: (f64, f64),
3009 u_range_b: (f64, f64),
3010 v_range_b: (f64, f64),
3011 initial_step: f64,
3012 u_periodic_a: bool,
3013 u_periodic_b: bool,
3014) -> Vec<Point3> {
3015 let max_steps = 500;
3016 let h_min = 1e-6;
3017 let h_max = initial_step * 4.0;
3018 let closure_dist = initial_step * 5.0;
3022 let max_angle = 10.0_f64.to_radians();
3024 let min_angle = 2.0_f64.to_radians();
3025
3026 let mut forward = Vec::new();
3028 let mut backward = Vec::new();
3030
3031 for (direction, points) in [(1.0_f64, &mut forward), (-1.0_f64, &mut backward)] {
3032 let mut current = seed;
3033 let mut h = initial_step;
3034 let mut prev_tangent: Option<Vec3> = None;
3035
3036 for _ in 0..max_steps {
3037 let (ua, va) = project_analytic(a, current, u_range_a, v_range_a);
3038 let (ub, vb) = project_analytic(b, current, u_range_b, v_range_b);
3039
3040 let na = norm_a(ua, va);
3041 let nb = norm_b(ub, vb);
3042
3043 let tangent = na.cross(nb);
3044 let t_len = tangent.length();
3045 if t_len < 1e-10 {
3046 break;
3047 }
3048 let t_dir = tangent * (direction / t_len);
3049
3050 if let Some(prev_t) = prev_tangent {
3052 let cos_angle = prev_t.dot(t_dir).clamp(-1.0, 1.0);
3053 let angle = cos_angle.acos();
3054 if angle > max_angle && h > h_min {
3055 h = (h * 0.5).max(h_min);
3056 } else if angle < min_angle {
3057 h = (h * 2.0).min(h_max);
3058 }
3059 }
3060 prev_tangent = Some(t_dir);
3061
3062 let next = Point3::new(
3063 h.mul_add(t_dir.x(), current.x()),
3064 h.mul_add(t_dir.y(), current.y()),
3065 h.mul_add(t_dir.z(), current.z()),
3066 );
3067
3068 let (ua2, va2) = project_analytic(a, next, u_range_a, v_range_a);
3069 let (ub2, vb2) = project_analytic(b, next, u_range_b, v_range_b);
3070
3071 let pa = surf_a(ua2, va2);
3072 let pb = surf_b(ub2, vb2);
3073 let mid = Point3::new(
3074 (pa.x() + pb.x()) * 0.5,
3075 (pa.y() + pb.y()) * 0.5,
3076 (pa.z() + pb.z()) * 0.5,
3077 );
3078 let out_a = (!u_periodic_a && (ua2 <= u_range_a.0 || ua2 >= u_range_a.1))
3079 || va2 <= v_range_a.0
3080 || va2 >= v_range_a.1;
3081 let out_b = (!u_periodic_b && (ub2 <= u_range_b.0 || ub2 >= u_range_b.1))
3082 || vb2 <= v_range_b.0
3083 || vb2 >= v_range_b.1;
3084
3085 if out_a || out_b {
3086 break;
3087 }
3088
3089 let dist_to_seed = (mid - seed).length();
3093 if points.len() > 10 && dist_to_seed < closure_dist {
3094 points.push(seed);
3095 break;
3096 }
3097
3098 points.push(mid);
3099 current = mid;
3100 }
3101 }
3102
3103 backward.reverse();
3105 let mut result = backward;
3106 result.push(seed);
3107 result.append(&mut forward);
3108
3109 for pt in &mut result {
3111 *pt = correct_to_intersection(
3112 a, b, surf_a, norm_a, surf_b, norm_b, *pt, u_range_a, v_range_a, u_range_b, v_range_b,
3113 5,
3114 );
3115 }
3116
3117 result
3118}
3119
3120fn project_analytic(
3124 surface: &AnalyticSurface<'_>,
3125 point: Point3,
3126 u_range: (f64, f64),
3127 v_range: (f64, f64),
3128) -> (f64, f64) {
3129 match surface {
3130 AnalyticSurface::Cylinder(cyl) => {
3131 let (u, v) = cyl.project_point(point);
3132 (u.clamp(u_range.0, u_range.1), v.clamp(v_range.0, v_range.1))
3133 }
3134 AnalyticSurface::Sphere(sphere) => {
3135 let (u, v) = sphere.project_point(point);
3136 (u.clamp(u_range.0, u_range.1), v.clamp(v_range.0, v_range.1))
3137 }
3138 AnalyticSurface::Cone(cone) => {
3139 let (u, v) = cone.project_point(point);
3140 (u.clamp(u_range.0, u_range.1), v.clamp(v_range.0, v_range.1))
3141 }
3142 AnalyticSurface::Torus(torus) => {
3143 let (u, v) = torus.project_point(point);
3144 (u.clamp(u_range.0, u_range.1), v.clamp(v_range.0, v_range.1))
3145 }
3146 }
3147}
3148
3149fn is_u_periodic(surface: &AnalyticSurface<'_>) -> bool {
3153 matches!(
3154 surface,
3155 AnalyticSurface::Cylinder(_)
3156 | AnalyticSurface::Cone(_)
3157 | AnalyticSurface::Sphere(_)
3158 | AnalyticSurface::Torus(_)
3159 )
3160}
3161
3162#[allow(clippy::type_complexity)]
3164fn surface_closures<'a>(
3165 surface: &'a AnalyticSurface<'a>,
3166) -> (
3167 Box<dyn Fn(f64, f64) -> Point3 + 'a>,
3168 Box<dyn Fn(f64, f64) -> Vec3 + 'a>,
3169 (f64, f64),
3170 (f64, f64),
3171) {
3172 match surface {
3173 AnalyticSurface::Cylinder(cyl) => (
3174 Box::new(|u, v| cyl.evaluate(u, v)),
3175 Box::new(|u, v| cyl.normal(u, v)),
3176 (0.0, TAU),
3177 (-1.0, 1.0),
3178 ),
3179 AnalyticSurface::Cone(cone) => (
3180 Box::new(|u, v| cone.evaluate(u, v)),
3181 Box::new(|u, v| cone.normal(u, v)),
3182 (0.0, TAU),
3183 (0.01, 2.0),
3184 ),
3185 AnalyticSurface::Sphere(sphere) => (
3186 Box::new(|u, v| sphere.evaluate(u, v)),
3187 Box::new(|u, v| sphere.normal(u, v)),
3188 (0.0, TAU),
3189 (-FRAC_PI_2, FRAC_PI_2),
3190 ),
3191 AnalyticSurface::Torus(torus) => (
3192 Box::new(|u, v| torus.evaluate(u, v)),
3193 Box::new(|u, v| torus.normal(u, v)),
3194 (0.0, TAU),
3195 (0.0, TAU),
3196 ),
3197 }
3198}
3199
3200#[cfg(test)]
3201#[allow(clippy::unwrap_used, clippy::expect_used)]
3202mod tests {
3203 use super::*;
3204 use crate::tolerance::Tolerance;
3205
3206 #[test]
3210 fn plane_cone_conic_arcs_lie_on_both_surfaces() {
3211 let half_angle = 1.1_f64;
3212 let cone = ConicalSurface::new(
3213 Point3::new(0.0, 0.0, 0.0),
3214 Vec3::new(0.0, 0.0, 1.0),
3215 half_angle,
3216 )
3217 .unwrap();
3218 let ruling = Vec3::new(half_angle.sin(), 0.0, half_angle.cos());
3219 for (normal, d) in [(Vec3::new(1.0, 0.0, 0.0), 0.5), (ruling, 1.0)] {
3220 let chains =
3221 exact_plane_analytic_reaching(AnalyticSurface::Cone(&cone), normal, d, 10.0)
3222 .unwrap();
3223 let chain = chains
3224 .iter()
3225 .find_map(|c| match c {
3226 ExactIntersectionCurve::Points(chain) => Some(chain),
3227 _ => None,
3228 })
3229 .expect("a parabola or hyperbola section is sampled");
3230 let (from, to) = (chain[2], chain[chain.len() - 3]);
3231 let arc = plane_cone_conic_arc(&cone, normal, d, from, to)
3232 .unwrap()
3233 .expect("an exact arc");
3234 let (t0, t1) = arc.domain();
3235 assert!((arc.evaluate(t0) - from).length() < 1e-12);
3236 assert!((arc.evaluate(t1) - to).length() < 1e-12);
3237 for i in 0..=200 {
3238 let q = arc.evaluate(t0 + (t1 - t0) * f64::from(i) / 200.0);
3239 let w = q - Point3::new(0.0, 0.0, 0.0);
3240 let off_plane = (normal.dot(w) - d).abs();
3241 let off_cone = (w.z() - w.length() * half_angle.sin()).abs();
3242 assert!(off_plane < 1e-9, "off the plane by {off_plane}");
3243 assert!(off_cone < 1e-9, "off the cone by {off_cone}");
3244 }
3245 }
3246 }
3247
3248 #[test]
3252 fn plane_cone_conic_arc_declines_a_near_parabolic_ellipse() {
3253 let half_angle = 1.1_f64;
3254 let cone = ConicalSurface::new(
3255 Point3::new(0.0, 0.0, 0.0),
3256 Vec3::new(0.0, 0.0, 1.0),
3257 half_angle,
3258 )
3259 .unwrap();
3260 for shortfall in [1e-10, 3e-10, 8e-10] {
3261 let tilt = half_angle - shortfall / (2.0 * half_angle).sin();
3262 let normal = Vec3::new(tilt.sin(), 0.0, tilt.cos());
3263 let chains =
3264 exact_plane_analytic_reaching(AnalyticSurface::Cone(&cone), normal, 1.0, 10.0)
3265 .unwrap();
3266 let Some(chain) = chains.iter().find_map(|c| match c {
3267 ExactIntersectionCurve::Points(chain) => Some(chain),
3268 _ => None,
3269 }) else {
3270 continue;
3271 };
3272 let (from, to) = (chain[2], chain[chain.len() - 3]);
3273 assert!(
3274 plane_cone_conic_arc(&cone, normal, 1.0, from, from)
3275 .unwrap()
3276 .is_none(),
3277 "coincident ends"
3278 );
3279 let Some(arc) = plane_cone_conic_arc(&cone, normal, 1.0, from, to).unwrap() else {
3280 continue;
3281 };
3282 let (t0, t1) = arc.domain();
3283 for i in 0..=200 {
3284 let w = arc.evaluate(t0 + (t1 - t0) * f64::from(i) / 200.0)
3285 - Point3::new(0.0, 0.0, 0.0);
3286 let off_cone = (w.z() - w.length() * half_angle.sin()).abs();
3287 assert!(off_cone < 1e-8, "{shortfall}: off the cone by {off_cone}");
3288 }
3289 }
3290 }
3291
3292 #[test]
3293 fn plane_cylinder_perpendicular() {
3294 let cyl =
3295 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 2.0)
3296 .unwrap();
3297
3298 let curves = intersect_plane_cylinder(&cyl, Vec3::new(0.0, 0.0, 1.0), 3.0).unwrap();
3300 assert!(!curves.is_empty(), "should find intersection curve");
3301 assert!(
3302 curves[0].points.len() > 10,
3303 "should have many sample points"
3304 );
3305
3306 let tol = Tolerance::loose();
3307 for pt in &curves[0].points {
3308 assert!(
3309 tol.approx_eq(pt.point.z(), 3.0),
3310 "z should be ~3.0, got {}",
3311 pt.point.z()
3312 );
3313 let r = pt.point.x().hypot(pt.point.y());
3314 assert!(tol.approx_eq(r, 2.0), "radius should be ~2.0, got {r}");
3315 }
3316 }
3317
3318 #[test]
3319 fn plane_sphere_equator() {
3320 let sphere = SphericalSurface::new(Point3::new(0.0, 0.0, 0.0), 3.0).unwrap();
3321
3322 let curves = intersect_plane_sphere(&sphere, Vec3::new(0.0, 0.0, 1.0), 0.0).unwrap();
3323 assert!(!curves.is_empty());
3324
3325 let tol = Tolerance::loose();
3326 for pt in &curves[0].points {
3327 assert!(
3328 tol.approx_eq(pt.point.z(), 0.0),
3329 "z should be ~0, got {}",
3330 pt.point.z()
3331 );
3332 let r = pt.point.x().hypot(pt.point.y());
3333 assert!(tol.approx_eq(r, 3.0), "radius should be ~3.0, got {r}");
3334 }
3335 }
3336
3337 #[test]
3338 fn plane_sphere_no_intersection() {
3339 let sphere = SphericalSurface::new(Point3::new(0.0, 0.0, 0.0), 1.0).unwrap();
3340
3341 let curves = intersect_plane_sphere(&sphere, Vec3::new(0.0, 0.0, 1.0), 5.0).unwrap();
3342 assert!(curves.is_empty());
3343 }
3344
3345 #[test]
3346 fn plane_cone_cross_section() {
3347 let cone = ConicalSurface::new(
3348 Point3::new(0.0, 0.0, 0.0),
3349 Vec3::new(0.0, 0.0, 1.0),
3350 std::f64::consts::FRAC_PI_4,
3351 )
3352 .unwrap();
3353
3354 let curves = intersect_plane_cone(&cone, Vec3::new(0.0, 0.0, 1.0), 1.0).unwrap();
3355 assert!(!curves.is_empty(), "should find intersection with cone");
3356 }
3357
3358 #[test]
3365 fn offset_parallel_equal_angle_cones_give_one_exact_ellipse() {
3366 let c1 = ConicalSurface::new(
3367 Point3::new(
3368 -16.999_999_999_999_975,
3369 -16.999_999_999_999_975,
3370 5.849_999_999_999_951,
3371 ),
3372 Vec3::new(0.0, 0.0, -1.0),
3373 0.785_398_163_397_433_5,
3374 )
3375 .unwrap();
3376 let c2 = ConicalSurface::new(
3377 Point3::new(
3378 -16.750_000_000_000_036,
3379 -16.750_000_000_000_018,
3380 0.749_999_999_999_881,
3381 ),
3382 Vec3::new(0.0, 0.0, 1.0),
3383 0.785_398_163_397_467_6,
3384 )
3385 .unwrap();
3386
3387 let curves = exact_cone_cone(&c1, &c2)
3388 .unwrap()
3389 .expect("offset parallel equal-angle cones must take the radical-plane path");
3390 assert_eq!(curves.len(), 1, "expected exactly one section conic");
3391 assert!(
3392 matches!(curves[0], ExactIntersectionCurve::Ellipse(_)),
3393 "expected an ellipse section, got {:?}",
3394 curves[0]
3395 );
3396 let ExactIntersectionCurve::Ellipse(ellipse) = &curves[0] else {
3397 return;
3398 };
3399
3400 for i in 0..16 {
3404 let p = crate::traits::ParametricCurve::evaluate(ellipse, TAU * f64::from(i) / 16.0);
3405 for (cone, label) in [(&c1, "c1"), (&c2, "c2")] {
3406 let rel = p - cone.apex();
3407 let rel_v = Vec3::new(rel.x(), rel.y(), rel.z());
3408 let axial = rel_v.dot(cone.axis());
3409 let radial = (rel_v - cone.axis() * axial).length();
3410 assert!(
3411 axial > 0.0,
3412 "{label}: sample on phantom nappe (axial {axial})"
3413 );
3414 let expect = cone.half_angle().tan() * axial;
3415 assert!(
3416 (radial - expect).abs() < 1e-9,
3417 "{label}: sample off surface by {}",
3418 (radial - expect).abs()
3419 );
3420 }
3421 }
3422 }
3423
3424 #[test]
3428 fn offset_parallel_cones_opening_apart_have_no_real_intersection() {
3429 let c1 = ConicalSurface::new(
3430 Point3::new(0.0, 0.0, 5.0),
3431 Vec3::new(0.0, 0.0, -1.0),
3432 std::f64::consts::FRAC_PI_4,
3433 )
3434 .unwrap();
3435 let c2 = ConicalSurface::new(
3436 Point3::new(0.25, 0.25, 20.0),
3437 Vec3::new(0.0, 0.0, 1.0),
3438 std::f64::consts::FRAC_PI_4,
3439 )
3440 .unwrap();
3441 let curves = exact_cone_cone(&c1, &c2)
3442 .unwrap()
3443 .expect("radical-plane path");
3444 assert!(curves.is_empty(), "disjoint nappes must yield no curves");
3445 }
3446
3447 #[test]
3450 fn offset_parallel_cones_with_unequal_angles_defer() {
3451 let c1 = ConicalSurface::new(
3452 Point3::new(0.0, 0.0, 5.0),
3453 Vec3::new(0.0, 0.0, -1.0),
3454 std::f64::consts::FRAC_PI_4,
3455 )
3456 .unwrap();
3457 let c2 = ConicalSurface::new(Point3::new(0.25, 0.25, 0.5), Vec3::new(0.0, 0.0, 1.0), 0.6)
3458 .unwrap();
3459 assert!(exact_cone_cone(&c1, &c2).unwrap().is_none());
3460 }
3461
3462 #[test]
3463 fn coaxial_cones_cross_at_single_circle() {
3464 let outer = ConicalSurface::new(
3469 Point3::new(0.0, 0.0, 50.0),
3470 Vec3::new(0.0, 0.0, -1.0),
3471 5.0_f64.atan(),
3472 )
3473 .unwrap();
3474 let inner = ConicalSurface::new(
3475 Point3::new(0.0, 0.0, 90.0),
3476 Vec3::new(0.0, 0.0, -1.0),
3477 10.0_f64.atan(),
3478 )
3479 .unwrap();
3480
3481 let curves = intersect_analytic_analytic_bounded(
3482 AnalyticSurface::Cone(&outer),
3483 AnalyticSurface::Cone(&inner),
3484 32,
3485 None,
3486 None,
3487 )
3488 .unwrap();
3489
3490 assert_eq!(
3491 curves.len(),
3492 1,
3493 "coaxial cones crossing at one circle must yield exactly one curve, got {}",
3494 curves.len()
3495 );
3496 for p in &curves[0].points {
3497 let r = p.point.x().hypot(p.point.y());
3498 assert!(
3499 (p.point.z() - 10.0).abs() < 1e-6 && (r - 8.0).abs() < 1e-6,
3500 "intersection point off the expected z=10,r=8 circle: {:?}",
3501 p.point
3502 );
3503 }
3504 }
3505
3506 #[test]
3507 fn plane_torus_cross_section() {
3508 let torus = ToroidalSurface::new(Point3::new(0.0, 0.0, 0.0), 5.0, 1.0).unwrap();
3509
3510 let curves = intersect_plane_torus(&torus, Vec3::new(0.0, 0.0, 1.0), 0.0).unwrap();
3511 assert!(
3512 !curves.is_empty(),
3513 "should find intersection curves with torus"
3514 );
3515 }
3516
3517 fn torus_implicit(p: Point3, major: f64, minor: f64) -> f64 {
3520 let rho = p.x().hypot(p.y());
3521 ((rho - major).hypot(p.z())) - minor
3522 }
3523
3524 #[test]
3530 fn parallel_cone_cylinder_gives_two_exact_branches() {
3531 use crate::traits::ParametricCurve;
3532 let cone = ConicalSurface::new(
3533 Point3::new(-5.45, -36.55, -4.85),
3534 Vec3::new(0.0, 0.0, 1.0),
3535 std::f64::consts::FRAC_PI_4,
3536 )
3537 .unwrap();
3538 let cyl = CylindricalSurface::new(
3539 Point3::new(-8.0, -34.0, -5.0),
3540 Vec3::new(0.0, 0.0, 1.0),
3541 4.45,
3542 )
3543 .unwrap();
3544 let v_hint = (1.484_924_240_492_058, 2.616_295_090_390_43);
3546 let curves = intersect_analytic_analytic_bounded(
3547 AnalyticSurface::Cone(&cone),
3548 AnalyticSurface::Cylinder(&cyl),
3549 32,
3550 Some(v_hint),
3551 Some((0.0, 2.5)),
3552 )
3553 .unwrap();
3554
3555 assert_eq!(curves.len(), 2, "expected exactly the two branches");
3556 for c in &curves {
3557 let (t0, t1) = c.curve.domain();
3558 for k in 0..=32 {
3559 let t = (t1 - t0).mul_add(f64::from(k) / 32.0, t0);
3560 let p = ParametricCurve::evaluate(&c.curve, t);
3561 let radial = ((p.x() + 8.0).powi(2) + (p.y() + 34.0).powi(2)).sqrt();
3563 assert!((radial - 4.45).abs() < 1e-6, "off cylinder: {radial}");
3564 let cone_r = ((p.x() + 5.45).powi(2) + (p.y() + 36.55).powi(2)).sqrt();
3566 assert!((cone_r - (p.z() + 4.85)).abs() < 1e-6, "off cone at {p:?}");
3567 assert!(p.z() >= -3.8 - 1e-9 && p.z() <= -3.0 + 1e-9, "z={}", p.z());
3569 }
3570 }
3571 }
3572
3573 #[test]
3576 fn coaxial_cone_cylinder_defers_to_other_paths() {
3577 let cone = ConicalSurface::new(
3578 Point3::new(0.0, 0.0, 0.0),
3579 Vec3::new(0.0, 0.0, 1.0),
3580 std::f64::consts::FRAC_PI_4,
3581 )
3582 .unwrap();
3583 let cyl =
3584 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 2.0)
3585 .unwrap();
3586 assert!(
3587 algebraic_parallel_cone_cylinder(&cone, &cyl, None, None)
3588 .unwrap()
3589 .is_none()
3590 );
3591 }
3592
3593 #[test]
3594 fn oblique_cone_cylinder_defers_to_other_paths() {
3595 let cone = ConicalSurface::new(
3596 Point3::new(0.0, 0.0, 0.0),
3597 Vec3::new(0.0, 0.0, 1.0),
3598 std::f64::consts::FRAC_PI_4,
3599 )
3600 .unwrap();
3601 let cyl =
3602 CylindricalSurface::new(Point3::new(3.0, 0.0, 1.0), Vec3::new(1.0, 0.0, 0.0), 1.0)
3603 .unwrap();
3604 assert!(
3605 algebraic_parallel_cone_cylinder(&cone, &cyl, None, None)
3606 .unwrap()
3607 .is_none()
3608 );
3609 }
3610
3611 #[test]
3612 fn plane_torus_lobe_closes_and_stays_on_surface() {
3613 use crate::traits::ParametricCurve;
3614 let (major, minor) = (10.0, 3.0);
3615 let torus = ToroidalSurface::new(Point3::new(0.0, 0.0, 0.0), major, minor).unwrap();
3616
3617 for (n, d) in [
3621 (Vec3::new(0.0, -1.0, 0.0), 4.0), (Vec3::new(-1.0, 0.0, 0.0), -6.0), (Vec3::new(0.0, 0.0, 1.0), 0.0), ] {
3625 let curves = intersect_plane_torus(&torus, n, d).unwrap();
3626 assert!(!curves.is_empty(), "plane n={n:?} d={d} found no curves");
3627 for c in &curves {
3628 let p0 = ParametricCurve::evaluate(&c.curve, 0.0);
3629 let p1 = ParametricCurve::evaluate(&c.curve, 1.0);
3630 assert!(
3631 (p0 - p1).length() < 1e-7,
3632 "lobe not closed: gap={} (n={n:?} d={d})",
3633 (p0 - p1).length()
3634 );
3635 for k in 0..=64 {
3637 let t = f64::from(k) / 64.0;
3638 let p = ParametricCurve::evaluate(&c.curve, t);
3639 assert!(
3640 torus_implicit(p, major, minor).abs() < 1e-2,
3641 "off-surface point {p:?} implicit={}",
3642 torus_implicit(p, major, minor)
3643 );
3644 }
3645 }
3646 }
3647 }
3648
3649 #[test]
3650 fn plane_torus_inner_tangent_figure_eight_stays_open() {
3651 use crate::traits::ParametricCurve;
3652 let (major, minor) = (10.0, 3.0);
3653 let torus = ToroidalSurface::new(Point3::new(0.0, 0.0, 0.0), major, minor).unwrap();
3654
3655 let curves =
3661 intersect_plane_torus(&torus, Vec3::new(-1.0, 0.0, 0.0), -(major - minor)).unwrap();
3662 assert!(!curves.is_empty(), "inner-tangent plane found no curves");
3663 let max_gap = curves
3664 .iter()
3665 .map(|c| {
3666 let p0 = ParametricCurve::evaluate(&c.curve, 0.0);
3667 let p1 = ParametricCurve::evaluate(&c.curve, 1.0);
3668 (p0 - p1).length()
3669 })
3670 .fold(0.0_f64, f64::max);
3671 assert!(
3672 max_gap > 1e-2,
3673 "figure-eight chain was wrongly force-closed (max end-gap={max_gap})"
3674 );
3675 }
3676
3677 #[test]
3678 fn line_torus_box_edge_crossing_is_exact() {
3679 let torus = ToroidalSurface::new(Point3::new(0.0, 0.0, 0.0), 10.0, 3.0).unwrap();
3682 let ts = intersect_line_torus(
3683 &torus,
3684 Point3::new(6.0, -4.0, -5.0),
3685 Vec3::new(0.0, 0.0, 1.0),
3686 );
3687 assert_eq!(ts.len(), 2, "expected 2 crossings, got {ts:?}");
3689 let zs: Vec<f64> = ts.iter().map(|t| -5.0 + t).collect();
3690 let rho = 6.0_f64.hypot(4.0);
3691 let z_exp = (9.0 - (rho - 10.0).powi(2)).sqrt();
3692 assert!(
3693 (zs[0] - (-z_exp)).abs() < 1e-9,
3694 "z0={} exp={}",
3695 zs[0],
3696 -z_exp
3697 );
3698 assert!((zs[1] - z_exp).abs() < 1e-9, "z1={} exp={}", zs[1], z_exp);
3699 for &t in &ts {
3701 let p = Point3::new(6.0, -4.0, -5.0 + t);
3702 let rho = p.x().hypot(p.y());
3703 let impl_v = (rho - 10.0).hypot(p.z()) - 3.0;
3704 assert!(impl_v.abs() < 1e-9, "off-torus impl={impl_v}");
3705 }
3706 }
3707
3708 #[test]
3709 fn line_torus_miss_and_tangent() {
3710 let torus = ToroidalSurface::new(Point3::new(0.0, 0.0, 0.0), 10.0, 3.0).unwrap();
3711 let miss = intersect_line_torus(
3713 &torus,
3714 Point3::new(20.0, 0.0, 0.0),
3715 Vec3::new(0.0, 0.0, 1.0),
3716 );
3717 assert!(miss.is_empty(), "expected no crossings, got {miss:?}");
3718 let axis =
3720 intersect_line_torus(&torus, Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0));
3721 assert!(axis.is_empty(), "z-axis should miss the tube, got {axis:?}");
3722 }
3723
3724 #[test]
3725 fn dispatch_via_analytic_surface() {
3726 let cyl =
3727 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 1.0)
3728 .unwrap();
3729 let curves = intersect_plane_analytic(
3730 AnalyticSurface::Cylinder(&cyl),
3731 Vec3::new(0.0, 0.0, 1.0),
3732 0.0,
3733 )
3734 .unwrap();
3735 assert!(!curves.is_empty());
3736 }
3737
3738 #[test]
3739 fn perpendicular_cylinders_intersect() {
3740 let cyl_z =
3741 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 1.0)
3742 .unwrap();
3743 let cyl_x =
3744 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(1.0, 0.0, 0.0), 1.0)
3745 .unwrap();
3746
3747 let curves = intersect_analytic_analytic(
3748 AnalyticSurface::Cylinder(&cyl_z),
3749 AnalyticSurface::Cylinder(&cyl_x),
3750 16,
3751 )
3752 .unwrap();
3753
3754 assert!(
3755 !curves.is_empty(),
3756 "perpendicular cylinders should intersect"
3757 );
3758
3759 for c in &curves {
3760 assert!(
3761 c.points.len() >= 2,
3762 "intersection curve should have >= 2 points, got {}",
3763 c.points.len()
3764 );
3765 }
3766 }
3767
3768 #[test]
3771 fn partially_overlapping_cylinders_meet_in_one_closed_loop() {
3772 let cyl_z =
3773 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 1.0)
3774 .unwrap();
3775 let cyl_x =
3776 CylindricalSurface::new(Point3::new(0.0, 1.2, 0.0), Vec3::new(1.0, 0.0, 0.0), 1.0)
3777 .unwrap();
3778 let curves = algebraic_cylinder_cylinder(&cyl_z, &cyl_x)
3779 .unwrap()
3780 .unwrap();
3781 assert_eq!(curves.len(), 1);
3782 let curve = &curves[0].curve;
3783 let (t0, t1) = curve.domain();
3784 assert!((curve.evaluate(t0) - curve.evaluate(t1)).length() < 1e-9);
3785 let off = |p: Point3| {
3786 let on_z = (p.x().hypot(p.y()) - 1.0).abs();
3787 let on_x = ((p.y() - 1.2).hypot(p.z()) - 1.0).abs();
3788 on_z.max(on_x)
3789 };
3790 let worst = (0..=400)
3791 .map(|k| off(curve.evaluate(t0 + (t1 - t0) * f64::from(k) / 400.0)))
3792 .fold(0.0, f64::max);
3793 assert!(worst < 2e-4, "curve leaves the cylinders by {worst}");
3794 }
3795
3796 #[test]
3800 fn near_tangent_cylinders_find_their_loop_on_the_thinner_sweep() {
3801 let cyl_z =
3802 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 1.0)
3803 .unwrap();
3804 let cyl_x =
3805 CylindricalSurface::new(Point3::new(0.0, 1.1998, 0.0), Vec3::new(1.0, 0.0, 0.0), 0.2)
3806 .unwrap();
3807 let curves = algebraic_cylinder_cylinder(&cyl_z, &cyl_x)
3808 .unwrap()
3809 .expect("the thin cylinder's sweep finds the loop");
3810 assert_eq!(curves.len(), 1);
3811 }
3812
3813 #[test]
3814 fn sphere_cylinder_intersect() {
3815 let sphere = SphericalSurface::new(Point3::new(0.0, 0.0, 0.0), 2.0).unwrap();
3816 let cyl =
3817 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 1.0)
3818 .unwrap();
3819
3820 let curves = intersect_analytic_analytic(
3821 AnalyticSurface::Sphere(&sphere),
3822 AnalyticSurface::Cylinder(&cyl),
3823 16,
3824 )
3825 .unwrap();
3826
3827 assert!(!curves.is_empty(), "sphere and cylinder should intersect");
3831 }
3832
3833 #[test]
3834 fn exact_sphere_cylinder_coaxial_two_circles() {
3835 let sphere = SphericalSurface::new(Point3::new(0.0, 0.0, 0.0), 6.0).unwrap();
3838 let cyl =
3839 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 3.0)
3840 .unwrap();
3841 let circles = exact_sphere_cylinder(&sphere, &cyl)
3842 .unwrap()
3843 .expect("coaxial case returns Some");
3844 assert_eq!(circles.len(), 2, "through-bore meets the sphere twice");
3845 let mut zs: Vec<f64> = circles
3846 .iter()
3847 .filter_map(|c| match c {
3848 ExactIntersectionCurve::Circle(circle) => {
3849 assert!(
3850 (circle.radius() - 3.0).abs() < 1e-9,
3851 "rim radius == cyl radius"
3852 );
3853 Some(circle.center().z())
3854 }
3855 _ => None,
3856 })
3857 .collect();
3858 assert_eq!(zs.len(), 2, "both sections must be exact circles");
3859 zs.sort_by(f64::total_cmp);
3860 let z = 27.0_f64.sqrt();
3861 assert!((zs[0] + z).abs() < 1e-9 && (zs[1] - z).abs() < 1e-9);
3862 }
3863
3864 #[test]
3865 fn exact_sphere_cylinder_non_coaxial_defers() {
3866 let sphere = SphericalSurface::new(Point3::new(0.0, 0.0, 0.0), 6.0).unwrap();
3868 let cyl =
3869 CylindricalSurface::new(Point3::new(2.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 3.0)
3870 .unwrap();
3871 assert!(
3872 exact_sphere_cylinder(&sphere, &cyl).unwrap().is_none(),
3873 "non-coaxial sphere/cylinder defers to the marcher"
3874 );
3875 }
3876
3877 fn circles_of(curves: &[ExactIntersectionCurve]) -> Vec<&Circle3D> {
3879 curves
3880 .iter()
3881 .filter_map(|c| match c {
3882 ExactIntersectionCurve::Circle(circle) => Some(circle),
3883 _ => None,
3884 })
3885 .collect()
3886 }
3887
3888 fn worst_off(
3891 circles: &[&Circle3D],
3892 torus: &ToroidalSurface,
3893 other: impl Fn(Point3) -> f64,
3894 ) -> f64 {
3895 let mut worst = 0.0_f64;
3896 for circle in circles {
3897 for k in 0..16 {
3898 let p = circle.evaluate(TAU * f64::from(k) / 16.0);
3899 let q = p - torus.center();
3900 let along = q.dot(torus.z_axis());
3901 let rho = (q - torus.z_axis() * along).length();
3902 let off = ((rho - torus.major_radius()).hypot(along) - torus.minor_radius()).abs();
3903 worst = worst.max(off).max(other(p).abs());
3904 }
3905 }
3906 worst
3907 }
3908
3909 #[test]
3910 fn exact_sphere_torus_meets_a_ball_on_the_axis_in_circles() {
3911 let torus = ToroidalSurface::new(Point3::new(0.0, 0.0, 0.0), 4.0, 1.5).unwrap();
3912 for height in [0.0, 1.0] {
3913 let centre = Point3::new(0.0, 0.0, height);
3914 let sphere = SphericalSurface::new(centre, 3.0).unwrap();
3915 let curves = exact_sphere_torus(&sphere, &torus).unwrap().unwrap();
3916 let circles = circles_of(&curves);
3917 assert_eq!((curves.len(), circles.len()), (2, 2), "height {height}");
3918 let worst = worst_off(&circles, &torus, |p| (p - centre).length() - 3.0);
3919 assert!(worst < 1e-9, "height {height}: {worst}");
3920 }
3921 }
3922
3923 #[test]
3924 fn exact_sphere_torus_misses_touches_and_defers() {
3925 let torus = ToroidalSurface::new(Point3::new(0.0, 0.0, 0.0), 4.0, 1.5).unwrap();
3926 let ball = |x: f64, r: f64| SphericalSurface::new(Point3::new(x, 0.0, 0.0), r).unwrap();
3927 assert!(
3928 exact_sphere_torus(&ball(0.0, 1.0), &torus)
3929 .unwrap()
3930 .unwrap()
3931 .is_empty(),
3932 "a small ball in the hole misses"
3933 );
3934 assert!(
3935 exact_sphere_torus(&ball(0.0, 2.5), &torus)
3936 .unwrap()
3937 .is_none(),
3938 "a ball touching the inner equator defers"
3939 );
3940 assert!(
3941 exact_sphere_torus(&ball(1.0, 3.0), &torus)
3942 .unwrap()
3943 .is_none(),
3944 "a ball off the axis defers"
3945 );
3946 let spindle = ToroidalSurface::with_axis_and_ref_dir(
3947 Point3::new(0.0, 0.0, 0.0),
3948 1.0,
3949 2.0,
3950 Vec3::new(0.0, 0.0, 1.0),
3951 Vec3::new(1.0, 0.0, 0.0),
3952 )
3953 .unwrap();
3954 assert!(
3955 exact_sphere_torus(&ball(0.0, 2.5), &spindle)
3956 .unwrap()
3957 .is_none()
3958 );
3959 }
3960
3961 #[test]
3962 fn exact_cylinder_torus_meets_a_coaxial_rod_in_circles() {
3963 let torus = ToroidalSurface::new(Point3::new(0.0, 0.0, 0.0), 4.0, 1.5).unwrap();
3964 let z = Vec3::new(0.0, 0.0, 1.0);
3965 let rod = |r: f64| CylindricalSurface::new(Point3::new(0.0, 0.0, -5.0), z, r).unwrap();
3966 let curves = exact_cylinder_torus(&rod(4.2), &torus).unwrap().unwrap();
3967 let circles = circles_of(&curves);
3968 assert_eq!((curves.len(), circles.len()), (2, 2));
3969 let worst = worst_off(&circles, &torus, |p| p.x().hypot(p.y()) - 4.2);
3970 assert!(worst < 1e-9, "{worst}");
3971 assert!(
3972 exact_cylinder_torus(&rod(2.0), &torus)
3973 .unwrap()
3974 .unwrap()
3975 .is_empty(),
3976 "a rod clear in the hole misses"
3977 );
3978 assert!(
3979 exact_cylinder_torus(&rod(5.5), &torus).unwrap().is_none(),
3980 "a wall touching the outer equator defers"
3981 );
3982 let tilted =
3983 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.1, 1.0), 4.2)
3984 .unwrap();
3985 let offset = CylindricalSurface::new(Point3::new(0.5, 0.0, 0.0), z, 4.2).unwrap();
3986 assert!(exact_cylinder_torus(&tilted, &torus).unwrap().is_none());
3987 assert!(exact_cylinder_torus(&offset, &torus).unwrap().is_none());
3988 let spindle = ToroidalSurface::with_axis_and_ref_dir(
3989 Point3::new(0.0, 0.0, 0.0),
3990 1.0,
3991 2.0,
3992 z,
3993 Vec3::new(1.0, 0.0, 0.0),
3994 )
3995 .unwrap();
3996 assert!(
3997 exact_cylinder_torus(&rod(0.5), &spindle).unwrap().is_none(),
3998 "a spindle torus's inner lemon also meets the rod"
3999 );
4000 }
4001
4002 fn off_axis_loops(cylinder_origin: Point3, cylinder_radius: f64) -> (usize, f64) {
4005 let sphere = SphericalSurface::new(Point3::new(0.0, 0.0, 0.0), 2.0).unwrap();
4006 let cyl =
4007 CylindricalSurface::new(cylinder_origin, Vec3::new(0.0, 0.0, 1.0), cylinder_radius)
4008 .unwrap();
4009 let curves = algebraic_sphere_cylinder(&sphere, &cyl, true)
4010 .unwrap()
4011 .unwrap();
4012 let mut worst: f64 = 0.0;
4013 for c in &curves {
4014 for ip in &c.points {
4015 let on_sphere = sphere.evaluate(ip.param1.0, ip.param1.1);
4016 let on_cylinder = cyl.evaluate(ip.param2.0, ip.param2.1);
4017 worst = worst
4018 .max((on_sphere - ip.point).length())
4019 .max((on_cylinder - ip.point).length());
4020 }
4021 let (t0, t1) = c.curve.domain();
4022 assert!((c.curve.evaluate(t0) - c.curve.evaluate(t1)).length() < 1e-9);
4023 for k in 0..=400 {
4024 let p = c.curve.evaluate(t0 + (t1 - t0) * f64::from(k) / 400.0);
4025 let on_sphere = ((p - Point3::new(0.0, 0.0, 0.0)).length() - 2.0).abs();
4026 let on_cylinder = ((p.x() - cylinder_origin.x())
4027 .hypot(p.y() - cylinder_origin.y())
4028 - cylinder_radius)
4029 .abs();
4030 worst = worst.max(on_sphere).max(on_cylinder);
4031 }
4032 }
4033 (curves.len(), worst)
4034 }
4035
4036 #[test]
4039 fn off_axis_drill_through_a_sphere_meets_it_in_two_loops() {
4040 let (count, worst) = off_axis_loops(Point3::new(0.5, 0.0, 0.0), 0.2);
4041 assert_eq!(count, 2);
4042 assert!(worst < 1e-5, "loops leave the surfaces by {worst}");
4043 }
4044
4045 #[test]
4047 fn cylinder_over_a_spheres_side_meets_it_in_one_loop() {
4048 let (count, worst) = off_axis_loops(Point3::new(1.8, 0.0, 0.0), 0.5);
4049 assert_eq!(count, 1);
4050 assert!(worst < 5e-4, "loop leaves the surfaces by {worst}");
4051 }
4052
4053 #[test]
4054 fn disjoint_cylinders_no_intersection() {
4055 let cyl_a =
4056 CylindricalSurface::new(Point3::new(0.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 0.5)
4057 .unwrap();
4058 let cyl_b =
4059 CylindricalSurface::new(Point3::new(5.0, 0.0, 0.0), Vec3::new(0.0, 0.0, 1.0), 0.5)
4060 .unwrap();
4061
4062 let curves = intersect_analytic_analytic(
4063 AnalyticSurface::Cylinder(&cyl_a),
4064 AnalyticSurface::Cylinder(&cyl_b),
4065 16,
4066 )
4067 .unwrap();
4068
4069 assert!(curves.is_empty(), "disjoint cylinders should not intersect");
4070 }
4071
4072 fn collect_points(curve: &ExactIntersectionCurve) -> Vec<Point3> {
4076 use crate::traits::ParametricCurve;
4077 match curve {
4078 ExactIntersectionCurve::Circle(c) => (0..=64)
4079 .map(|i| ParametricCurve::evaluate(c, TAU * f64::from(i) / 64.0))
4080 .collect(),
4081 ExactIntersectionCurve::Ellipse(e) => (0..=64)
4082 .map(|i| ParametricCurve::evaluate(e, TAU * f64::from(i) / 64.0))
4083 .collect(),
4084 ExactIntersectionCurve::Points(pts) => pts.clone(),
4085 }
4086 }
4087
4088 fn assert_on_plane_and_cone(
4091 curves: &[ExactIntersectionCurve],
4092 cone: &ConicalSurface,
4093 n: Vec3,
4094 d: f64,
4095 z_bound: (f64, f64),
4096 ) {
4097 assert!(!curves.is_empty(), "expected at least one section curve");
4098 let mut total = 0;
4099 for curve in curves {
4100 for p in collect_points(curve) {
4101 total += 1;
4102 let plane_err = (n.x() * p.x() + n.y() * p.y() + n.z() * p.z() - d).abs();
4103 assert!(
4104 plane_err < 1e-9,
4105 "point off plane by {plane_err:.2e}: {p:?}"
4106 );
4107 let (u, v) = cone.project_point(p);
4108 let q = cone.evaluate(u, v);
4109 let cone_err =
4110 ((p.x() - q.x()).powi(2) + (p.y() - q.y()).powi(2) + (p.z() - q.z()).powi(2))
4111 .sqrt();
4112 assert!(cone_err < 1e-7, "point off cone by {cone_err:.2e}: {p:?}");
4113 assert!(v >= -1e-9, "point on phantom nappe (v={v:.4}): {p:?}");
4114 assert!(
4115 p.z() >= z_bound.0 - 1e-6 && p.z() <= z_bound.1 + 1e-6,
4116 "point z={:.4} outside sane bound {z_bound:?}: {p:?}",
4117 p.z()
4118 );
4119 }
4120 }
4121 assert!(total >= 8, "too few section points ({total})");
4122 }
4123
4124 #[test]
4125 fn oblique_plane_cone_ellipse_is_exact_and_on_both() {
4126 let cone = ConicalSurface::new(
4130 Point3::new(0.0, 0.0, 0.0),
4131 Vec3::new(0.0, 0.0, 1.0),
4132 std::f64::consts::FRAC_PI_4,
4133 )
4134 .unwrap();
4135 let n = Vec3::new(0.3, 0.0, 1.0).normalize().unwrap();
4136 let d = n.z() * 5.0;
4138 let curves = exact_plane_cone(&cone, n, d, 0.0).unwrap();
4139 assert!(
4140 curves
4141 .iter()
4142 .any(|c| matches!(c, ExactIntersectionCurve::Ellipse(_))),
4143 "oblique steep plane × cone must yield an exact Ellipse"
4144 );
4145 assert_on_plane_and_cone(&curves, &cone, n, d, (0.0, 12.0));
4147 }
4148
4149 #[test]
4150 fn oblique_plane_cone_wrong_nappe_is_empty() {
4151 let cone = ConicalSurface::new(
4155 Point3::new(0.0, 0.0, 0.0),
4156 Vec3::new(0.0, 0.0, 1.0),
4157 std::f64::consts::FRAC_PI_4,
4158 )
4159 .unwrap();
4160 let n = Vec3::new(0.3, 0.0, 1.0).normalize().unwrap();
4161 let d = n.z() * -5.0;
4162 let curves = exact_plane_cone(&cone, n, d, 0.0).unwrap();
4163 assert!(
4164 curves.is_empty(),
4165 "plane on the phantom-nappe side must yield no real curve, got {}",
4166 curves.len()
4167 );
4168 }
4169
4170 #[test]
4171 fn oblique_plane_cone_parabola_on_both_single_branch() {
4172 let cone = ConicalSurface::new(
4175 Point3::new(0.0, 0.0, 0.0),
4176 Vec3::new(0.0, 0.0, 1.0),
4177 std::f64::consts::FRAC_PI_4,
4178 )
4179 .unwrap();
4180 let n = Vec3::new(1.0, 0.0, 1.0).normalize().unwrap();
4181 let d = n.x() * 3.0 + n.z() * 3.0; let curves = exact_plane_cone(&cone, n, d, 0.0).unwrap();
4183 assert_eq!(
4184 curves.len(),
4185 1,
4186 "a parabola is a single branch, got {}",
4187 curves.len()
4188 );
4189 assert_on_plane_and_cone(&curves, &cone, n, d, (0.0, 400.0));
4191 }
4192
4193 #[test]
4194 fn oblique_plane_cone_hyperbola_real_nappe_only() {
4195 let cone = ConicalSurface::new(
4203 Point3::new(-59.0, -59.0, 15.85),
4204 Vec3::new(0.0, 0.0, -1.0),
4205 std::f64::consts::FRAC_PI_4,
4206 )
4207 .unwrap();
4208 let n = Vec3::new(0.0, 0.995_18, 0.098_02).normalize().unwrap();
4209 let d = -58.360_56;
4210 let cos_theta = n.dot(cone.axis()).abs();
4211 assert!(cos_theta < 0.2, "expected a shallow (hyperbola) plane");
4212 let curves = exact_plane_cone(&cone, n, d, 0.0).unwrap();
4213 assert_on_plane_and_cone(&curves, &cone, n, d, (5.0, 15.85));
4216 for c in &curves {
4218 assert!(
4219 matches!(c, ExactIntersectionCurve::Points(_)),
4220 "hyperbola must be sampled Points, not a closed conic"
4221 );
4222 }
4223 }
4224}