From 0a60e65468e418c0ce73c6b10e06b6c1aa7c1ebb Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 16 Apr 2025 10:40:20 +0200 Subject: [PATCH] Prepare for follow-on change --- crates/fj-core/src/geometry/curves/circle.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fj-core/src/geometry/curves/circle.rs b/crates/fj-core/src/geometry/curves/circle.rs index 06c542b44..eb7b920a3 100644 --- a/crates/fj-core/src/geometry/curves/circle.rs +++ b/crates/fj-core/src/geometry/curves/circle.rs @@ -96,9 +96,9 @@ impl CircleApproxParams { &self, boundary: impl Into>>, ) -> impl Iterator> + '_ { - let boundary = boundary.into(); + let boundary = boundary.into().inner; - let [a, b] = boundary.inner.map(|point| point.t / self.increment); + let [a, b] = boundary.map(|point| point.t / self.increment); let direction = (b - a).sign(); let [min, max] = if a < b { [a, b] } else { [b, a] };