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,