brep_kernel/geometry/analytic_surface.rs
1//! Analytic carrier recognition and closed-form geometry for the exact
2//! rational-NURBS surfaces the kernel builds by revolution.
3//!
4//! Every analytic surface in this kernel *is* an exact rational NURBS patch
5//! (built by `make_plane` / `make_revolution`), so recognition never changes
6//! geometry — it only unlocks closed-form fast paths (projection now, exact
7//! intersection curves next) that bypass grid seeding and Newton marching.
8//! Recognition is by exact reconstruction: candidate parameters are extracted
9//! from the control net, the surface is rebuilt with the same constructor,
10//! and every knot/control/weight must match to a scale-relative tolerance.
11//! A surface that fails reconstruction is simply not analytic — there are no
12//! partial matches and no approximation.
13
14use crate::{make_arc, make_revolution, NurbsCurve, NurbsSurface, SurfaceProjection, Vec3};
15
16const RECOGNITION_TOLERANCE: f64 = 1e-9;
17
18#[derive(Clone, Debug)]
19pub struct RevolutionFrame {
20 /// A point on the revolution axis.
21 pub origin: Vec3,
22 /// Unit axis direction; positive rotation follows the right-hand rule.
23 pub axis: Vec3,
24 /// Unit radial direction of the u = 0 meridian.
25 pub x_axis: Vec3,
26 /// axis × x_axis, so azimuth θ = atan2(d·y_axis, d·x_axis).
27 pub y_axis: Vec3,
28}
29
30impl RevolutionFrame {
31 /// Azimuth of `point` about the axis in [0, 2π), plus its radial
32 /// distance and signed axial coordinate relative to `origin`.
33 /// Returns `None` for the azimuth when the point lies on the axis.
34 fn cylindrical(&self, point: Vec3) -> (Option<f64>, f64, f64) {
35 let d = point.sub(self.origin);
36 let axial = d.dot(self.axis);
37 let radial_vector = d.sub(self.axis.scale(axial));
38 let radius = radial_vector.length();
39 if radius <= 1e-14 * (1.0 + axial.abs()) {
40 return (None, radius, axial);
41 }
42 let mut theta = radial_vector
43 .dot(self.y_axis)
44 .atan2(radial_vector.dot(self.x_axis));
45 if theta < 0.0 {
46 theta += std::f64::consts::TAU;
47 }
48 (Some(theta), radius, axial)
49 }
50}
51
52#[derive(Clone, Debug)]
53pub enum AnalyticSurface {
54 /// Affine patch: S(u,v) = origin + u·u_dir + v·v_dir over the knot domain.
55 Plane {
56 origin: Vec3,
57 u_dir: Vec3,
58 v_dir: Vec3,
59 u_domain: [f64; 2],
60 v_domain: [f64; 2],
61 },
62 /// Full revolution of a straight generatrix: cylinders (rho0 == rho1)
63 /// and cones/frusta, with v linear along the generatrix over [0, 1].
64 RuledRevolution {
65 frame: RevolutionFrame,
66 rho0: f64,
67 rho1: f64,
68 height: f64,
69 },
70 /// Full revolution of a -π/2..π/2 polar meridian arc (two 90° spans).
71 Sphere { frame: RevolutionFrame, radius: f64 },
72 /// Full revolution of a full tube circle (four 90° spans in v).
73 Torus {
74 frame: RevolutionFrame,
75 major_radius: f64,
76 minor_radius: f64,
77 },
78 /// GENERAL revolution (full or partial sweep) of an arbitrary
79 /// generatrix — every other `make_revolution` product the classic
80 /// quadric variants above do not cover. The closest surface point to
81 /// a query lies in the query's meridian half-plane, so projection
82 /// reduces exactly to a 1D projection onto the generatrix (rotated
83 /// rigidly about the axis); out-of-sweep queries compare the two
84 /// boundary meridians instead (Golovanov §4.13: prefer analytic
85 /// constructions — this was the unrecognized carrier that sent
86 /// tangent glue pairs into the marcher).
87 Revolution {
88 frame: RevolutionFrame,
89 spans: usize,
90 sweep: f64,
91 generatrix: NurbsCurve,
92 },
93}
94
95impl AnalyticSurface {
96 /// A short, human-readable classification of this analytic carrier for the
97 /// Properties Info panel: `"Plane"`, `"Cylinder"`, `"Cone"`, `"Sphere"`,
98 /// `"Torus"`, or `"Surface of revolution"`. A `RuledRevolution` is a
99 /// cylinder when its two generatrix radii match (relative tolerance, same
100 /// style as recognition) and a cone otherwise — a zero end-radius apex is
101 /// still a cone, no special case needed. A partial-sweep revolve of a
102 /// straight profile recognizes as the general `Revolution` (not
103 /// `RuledRevolution`), so it reads "Surface of revolution" rather than
104 /// "Cylinder"/"Cone".
105 pub fn kind_label(&self) -> &'static str {
106 match self {
107 AnalyticSurface::Plane { .. } => "Plane",
108 AnalyticSurface::RuledRevolution { rho0, rho1, .. } => {
109 let scale = rho0.abs().max(rho1.abs()).max(1.0);
110 if (rho0 - rho1).abs() <= RECOGNITION_TOLERANCE * scale {
111 "Cylinder"
112 } else {
113 "Cone"
114 }
115 }
116 AnalyticSurface::Sphere { .. } => "Sphere",
117 AnalyticSurface::Torus { .. } => "Torus",
118 AnalyticSurface::Revolution { .. } => "Surface of revolution",
119 }
120 }
121}
122
123/// Parameter of the standard tangent-intersection rational quadratic arc
124/// construction (`make_arc` / `make_revolution`): a sweep split uniformly
125/// into `spans` segments, each with middle weight cos(segment/2). Maps an
126/// angle in [0, sweep] to the curve parameter in [0, 1] exactly.
127pub fn circle_angle_to_parameter(spans: usize, sweep: f64, angle: f64) -> f64 {
128 let segment = sweep / spans as f64;
129 let clamped = angle.clamp(0.0, sweep);
130 let mut span = (clamped / segment).floor() as usize;
131 if span >= spans {
132 span = spans - 1;
133 }
134 let local = clamped - span as f64 * segment;
135 // Derived from tan(θ/2) = t·sin(α/2) / (1 − t + t·cos(α/2)) for the
136 // symmetric rational quadratic arc of sweep α: exact, monotone, and
137 // singularity-free for α ≤ π/2.
138 let half = (0.5 * local).tan();
139 let s = (0.5 * segment).sin();
140 let c = (0.5 * segment).cos();
141 let t = half / (s + half * (1.0 - c));
142 (span as f64 + t.clamp(0.0, 1.0)) / spans as f64
143}
144
145#[path = "analytic_surface/recognition.rs"]
146mod recognition;
147#[path = "analytic_surface/intersect.rs"]
148mod intersect;
149#[path = "analytic_surface/revolution.rs"]
150mod revolution;
151#[cfg(test)]
152#[path = "analytic_surface/tests.rs"]
153mod tests;
154#[cfg(test)]
155#[path = "analytic_surface/coaxial_tests.rs"]
156mod coaxial_tests;
157
158pub use intersect::intersect_analytic_pair;
159pub use recognition::recognize;
160pub use revolution::{revolution_structure, RevolutionStructure};
161pub(crate) use revolution::circumcenter;
162use recognition::generatrix_is_meridional_half_ray;
163
164impl AnalyticSurface {
165 /// Closed-form point projection in the surface's own parameterization.
166 /// Returns the exact nearest parameter; the caller evaluates the NURBS at
167 /// that parameter so results stay bit-consistent with the carrier.
168 pub fn project(&self, surface: &NurbsSurface, point: Vec3) -> Option<SurfaceProjection> {
169 let (u, v) = match self {
170 AnalyticSurface::Plane {
171 origin,
172 u_dir,
173 v_dir,
174 u_domain,
175 v_domain,
176 } => {
177 // Least-squares foot on the (possibly non-orthogonal) affine
178 // patch, clamped to the trimmed domain.
179 let d = point.sub(*origin);
180 let a = u_dir.dot(*u_dir);
181 let b = u_dir.dot(*v_dir);
182 let c = v_dir.dot(*v_dir);
183 let determinant = a * c - b * b;
184 if determinant.abs() <= 1e-16 * (a * c).max(1.0) {
185 return None;
186 }
187 let fu = u_dir.dot(d);
188 let fv = v_dir.dot(d);
189 let u =
190 ((fu * c - fv * b) / determinant + u_domain[0]).clamp(u_domain[0], u_domain[1]);
191 let v =
192 ((fv * a - fu * b) / determinant + v_domain[0]).clamp(v_domain[0], v_domain[1]);
193 (u, v)
194 }
195 AnalyticSurface::RuledRevolution {
196 frame,
197 rho0,
198 rho1,
199 height,
200 } => {
201 let (theta, rho, z) = frame.cylindrical(point);
202 let u = theta
203 .map(|angle| circle_angle_to_parameter(4, std::f64::consts::TAU, angle))
204 .unwrap_or(0.0);
205 // 2D meridian problem: project (rho, z) onto the generatrix
206 // segment (rho0, 0) -> (rho1, height).
207 let delta_rho = rho1 - rho0;
208 let length_squared = delta_rho * delta_rho + height * height;
209 let t = (((rho - rho0) * delta_rho + z * height) / length_squared).clamp(0.0, 1.0);
210 (u, t)
211 }
212 AnalyticSurface::Sphere { frame, radius: _ } => {
213 let (theta, rho, z) = frame.cylindrical(point);
214 let u = theta
215 .map(|angle| circle_angle_to_parameter(4, std::f64::consts::TAU, angle))
216 .unwrap_or(0.0);
217 // Polar angle from the south pole: β ∈ [0, π] over two spans.
218 let beta = rho.atan2(-z);
219 let v = circle_angle_to_parameter(2, std::f64::consts::PI, beta);
220 (u, v)
221 }
222 AnalyticSurface::Torus {
223 frame,
224 major_radius,
225 minor_radius: _,
226 } => {
227 let (theta, rho, z) = frame.cylindrical(point);
228 let u = theta
229 .map(|angle| circle_angle_to_parameter(4, std::f64::consts::TAU, angle))
230 .unwrap_or(0.0);
231 let mut psi = z.atan2(rho - major_radius);
232 if psi < 0.0 {
233 psi += std::f64::consts::TAU;
234 }
235 let v = circle_angle_to_parameter(4, std::f64::consts::TAU, psi);
236 (u, v)
237 }
238 AnalyticSurface::Revolution {
239 frame,
240 spans,
241 sweep,
242 generatrix,
243 } => {
244 if !generatrix_is_meridional_half_ray(generatrix, frame) {
245 return None;
246 }
247 let (theta, rho, z) = frame.cylindrical(point);
248 let full = *sweep >= std::f64::consts::TAU - 1e-9;
249 // Rotating the query rigidly about the axis to a meridian
250 // preserves its distance to that meridian's generatrix copy,
251 // so each candidate reduces to a 1D curve projection.
252 let point_at_angle = |angle: f64| {
253 let radial = frame
254 .x_axis
255 .scale(angle.cos())
256 .add(frame.y_axis.scale(angle.sin()));
257 frame.origin.add(radial.scale(rho)).add(frame.axis.scale(z))
258 };
259 let mut candidates: Vec<(f64, Vec3)> = Vec::with_capacity(2);
260 match theta {
261 None => candidates.push((0.0, point)),
262 Some(angle) if full || angle <= *sweep => {
263 // Rotate the query to the generatrix meridian (angle 0).
264 candidates.push((
265 circle_angle_to_parameter(*spans, *sweep, angle),
266 point_at_angle(0.0),
267 ));
268 }
269 Some(angle) => {
270 // Outside the sweep: the minimizer sits on one of the
271 // two boundary meridians; compare both. The start
272 // meridian IS the generatrix, so the original point
273 // projects onto it directly; the end meridian maps to
274 // the generatrix by a rigid rotation of the query.
275 candidates.push((0.0, point));
276 candidates.push((1.0, point_at_angle(angle - *sweep)));
277 }
278 }
279 let mut best: Option<(f64, f64, f64)> = None;
280 for (u, query) in candidates {
281 let Ok(projection) = crate::project_point_to_curve(generatrix, query) else {
282 return None;
283 };
284 if best
285 .map(|(_, _, distance)| projection.distance < distance)
286 .unwrap_or(true)
287 {
288 best = Some((u, projection.u, projection.distance));
289 }
290 }
291 let (u, v, _) = best?;
292 (u, v)
293 }
294 };
295 let projected = surface.evaluate(u, v).ok()?;
296 Some(SurfaceProjection {
297 u,
298 v,
299 point: projected,
300 distance: projected.sub(point).length(),
301 })
302 }
303
304 /// True when the closed-form projection is the exact global minimizer
305 /// (everywhere except on-axis queries, where any meridian ties).
306 pub fn frame(&self) -> Option<&RevolutionFrame> {
307 match self {
308 AnalyticSurface::Plane { .. } => None,
309 AnalyticSurface::RuledRevolution { frame, .. }
310 | AnalyticSurface::Sphere { frame, .. }
311 | AnalyticSurface::Torus { frame, .. }
312 | AnalyticSurface::Revolution { frame, .. } => Some(frame),
313 }
314 }
315}