From f7f09b324f2443823b2c15129ef6b0d8a7f342e3 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 25 Oct 2024 20:54:32 +0200 Subject: [PATCH] Run `cargo fmt` --- crates/fj-core/src/algorithms/approx/curve.rs | 7 +++---- crates/fj-core/src/operations/sweep/path.rs | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/crates/fj-core/src/algorithms/approx/curve.rs b/crates/fj-core/src/algorithms/approx/curve.rs index f43255ab8..47634b42a 100644 --- a/crates/fj-core/src/algorithms/approx/curve.rs +++ b/crates/fj-core/src/algorithms/approx/curve.rs @@ -4,7 +4,7 @@ use fj_math::{Circle, Line, Point}; use crate::{ geometry::{ - surfaces::SweptCurve, repr::tri_mesh::convert_point_surface_to_global, + repr::tri_mesh::convert_point_surface_to_global, surfaces::SweptCurve, CurveBoundary, Geometry, Path, Tolerance, }, storage::Handle, @@ -213,9 +213,8 @@ mod tests { circle::approx_circle, curve::approx_curve, ApproxPoint, }, geometry::{ - surfaces::SweptCurve, - repr::tri_mesh::convert_point_surface_to_global, CurveBoundary, - Path, + repr::tri_mesh::convert_point_surface_to_global, + surfaces::SweptCurve, CurveBoundary, Path, }, operations::build::BuildSurface, topology::Surface, diff --git a/crates/fj-core/src/operations/sweep/path.rs b/crates/fj-core/src/operations/sweep/path.rs index 433326628..b675a35b7 100644 --- a/crates/fj-core/src/operations/sweep/path.rs +++ b/crates/fj-core/src/operations/sweep/path.rs @@ -2,10 +2,10 @@ use fj_math::{Circle, Line, Vector}; use crate::{ geometry::{ - surfaces::SweptCurve, repr::tri_mesh::{ convert_point_surface_to_global, convert_vector_surface_to_global, }, + surfaces::SweptCurve, Path, }, operations::build::BuildSurface,