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// BREP private tests: de7909b049d7a211
152// BREP private tests: f49ddbd4287c384e
153
154pub use intersect::intersect_analytic_pair;
155pub use recognition::recognize;
156pub use revolution::{revolution_structure, RevolutionStructure};
157pub(crate) use revolution::circumcenter;
158use recognition::generatrix_is_meridional_half_ray;
159
160impl AnalyticSurface {
161 /// Closed-form point projection in the surface's own parameterization.
162 /// Returns the exact nearest parameter; the caller evaluates the NURBS at
163 /// that parameter so results stay bit-consistent with the carrier.
164 pub fn project(&self, surface: &NurbsSurface, point: Vec3) -> Option<SurfaceProjection> {
165 let (u, v) = match self {
166 AnalyticSurface::Plane {
167 origin,
168 u_dir,
169 v_dir,
170 u_domain,
171 v_domain,
172 } => {
173 // Least-squares foot on the (possibly non-orthogonal) affine
174 // patch, clamped to the trimmed domain.
175 let d = point.sub(*origin);
176 let a = u_dir.dot(*u_dir);
177 let b = u_dir.dot(*v_dir);
178 let c = v_dir.dot(*v_dir);
179 let determinant = a * c - b * b;
180 if determinant.abs() <= 1e-16 * (a * c).max(1.0) {
181 return None;
182 }
183 let fu = u_dir.dot(d);
184 let fv = v_dir.dot(d);
185 let u =
186 ((fu * c - fv * b) / determinant + u_domain[0]).clamp(u_domain[0], u_domain[1]);
187 let v =
188 ((fv * a - fu * b) / determinant + v_domain[0]).clamp(v_domain[0], v_domain[1]);
189 (u, v)
190 }
191 AnalyticSurface::RuledRevolution {
192 frame,
193 rho0,
194 rho1,
195 height,
196 } => {
197 let (theta, rho, z) = frame.cylindrical(point);
198 let u = theta
199 .map(|angle| circle_angle_to_parameter(4, std::f64::consts::TAU, angle))
200 .unwrap_or(0.0);
201 // 2D meridian problem: project (rho, z) onto the generatrix
202 // segment (rho0, 0) -> (rho1, height).
203 let delta_rho = rho1 - rho0;
204 let length_squared = delta_rho * delta_rho + height * height;
205 let t = (((rho - rho0) * delta_rho + z * height) / length_squared).clamp(0.0, 1.0);
206 (u, t)
207 }
208 AnalyticSurface::Sphere { frame, radius: _ } => {
209 let (theta, rho, z) = frame.cylindrical(point);
210 let u = theta
211 .map(|angle| circle_angle_to_parameter(4, std::f64::consts::TAU, angle))
212 .unwrap_or(0.0);
213 // Polar angle from the south pole: β ∈ [0, π] over two spans.
214 let beta = rho.atan2(-z);
215 let v = circle_angle_to_parameter(2, std::f64::consts::PI, beta);
216 (u, v)
217 }
218 AnalyticSurface::Torus {
219 frame,
220 major_radius,
221 minor_radius: _,
222 } => {
223 let (theta, rho, z) = frame.cylindrical(point);
224 let u = theta
225 .map(|angle| circle_angle_to_parameter(4, std::f64::consts::TAU, angle))
226 .unwrap_or(0.0);
227 let mut psi = z.atan2(rho - major_radius);
228 if psi < 0.0 {
229 psi += std::f64::consts::TAU;
230 }
231 let v = circle_angle_to_parameter(4, std::f64::consts::TAU, psi);
232 (u, v)
233 }
234 AnalyticSurface::Revolution {
235 frame,
236 spans,
237 sweep,
238 generatrix,
239 } => {
240 if !generatrix_is_meridional_half_ray(generatrix, frame) {
241 return None;
242 }
243 let (theta, rho, z) = frame.cylindrical(point);
244 let full = *sweep >= std::f64::consts::TAU - 1e-9;
245 // Rotating the query rigidly about the axis to a meridian
246 // preserves its distance to that meridian's generatrix copy,
247 // so each candidate reduces to a 1D curve projection.
248 let point_at_angle = |angle: f64| {
249 let radial = frame
250 .x_axis
251 .scale(angle.cos())
252 .add(frame.y_axis.scale(angle.sin()));
253 frame.origin.add(radial.scale(rho)).add(frame.axis.scale(z))
254 };
255 let mut candidates: Vec<(f64, Vec3)> = Vec::with_capacity(2);
256 match theta {
257 None => candidates.push((0.0, point)),
258 Some(angle) if full || angle <= *sweep => {
259 // Rotate the query to the generatrix meridian (angle 0).
260 candidates.push((
261 circle_angle_to_parameter(*spans, *sweep, angle),
262 point_at_angle(0.0),
263 ));
264 }
265 Some(angle) => {
266 // Outside the sweep: the minimizer sits on one of the
267 // two boundary meridians; compare both. The start
268 // meridian IS the generatrix, so the original point
269 // projects onto it directly; the end meridian maps to
270 // the generatrix by a rigid rotation of the query.
271 candidates.push((0.0, point));
272 candidates.push((1.0, point_at_angle(angle - *sweep)));
273 }
274 }
275 let mut best: Option<(f64, f64, f64)> = None;
276 for (u, query) in candidates {
277 let Ok(projection) = crate::project_point_to_curve(generatrix, query) else {
278 return None;
279 };
280 if best
281 .map(|(_, _, distance)| projection.distance < distance)
282 .unwrap_or(true)
283 {
284 best = Some((u, projection.u, projection.distance));
285 }
286 }
287 let (u, v, _) = best?;
288 (u, v)
289 }
290 };
291 let projected = surface.evaluate(u, v).ok()?;
292 Some(SurfaceProjection {
293 u,
294 v,
295 point: projected,
296 distance: projected.sub(point).length(),
297 })
298 }
299
300 /// True when the closed-form projection is the exact global minimizer
301 /// (everywhere except on-axis queries, where any meridian ties).
302 pub fn frame(&self) -> Option<&RevolutionFrame> {
303 match self {
304 AnalyticSurface::Plane { .. } => None,
305 AnalyticSurface::RuledRevolution { frame, .. }
306 | AnalyticSurface::Sphere { frame, .. }
307 | AnalyticSurface::Torus { frame, .. }
308 | AnalyticSurface::Revolution { frame, .. } => Some(frame),
309 }
310 }
311}