From 2ab37348a82dfa70a468e1b5f0514f4edb4d4c41 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 13 Sep 2024 20:43:54 +0200 Subject: [PATCH] Prepare for follow-on change --- crates/fj-core/src/geometry/surface.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fj-core/src/geometry/surface.rs b/crates/fj-core/src/geometry/surface.rs index 942b50b23..8dd64fd57 100644 --- a/crates/fj-core/src/geometry/surface.rs +++ b/crates/fj-core/src/geometry/surface.rs @@ -65,7 +65,7 @@ impl SurfaceGeom { let [a, b] = self .u - .line_segment_at([point_surface.u], tolerance) + .line_segment_at(Point::from([point_surface.u]), tolerance) .map(|point_global| point_global + self.v * point_surface.v); let c = a + (b - a) / 2.;