From 77183637a3c98173ea49b7820a60d1242cdb9035 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 21 Jun 2024 20:30:51 +0200 Subject: [PATCH] Remove redundant comment --- crates/fj-core/src/algorithms/approx/curve.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crates/fj-core/src/algorithms/approx/curve.rs b/crates/fj-core/src/algorithms/approx/curve.rs index 9b3882b5e..d31324985 100644 --- a/crates/fj-core/src/algorithms/approx/curve.rs +++ b/crates/fj-core/src/algorithms/approx/curve.rs @@ -53,12 +53,6 @@ fn approx_curve( boundary: CurveBoundary>, tolerance: impl Into, ) -> CurveApprox { - // There are different cases of varying complexity. Circles are the hard - // part here, as they need to be approximated, while lines don't need to be. - // - // This will probably all be unified eventually, as `SurfacePath` and - // `GlobalPath` grow APIs that are better suited to implementing this code - // in a more abstract way. let points = match (path, surface.u) { (SurfacePath::Circle(_), GlobalPath::Circle(_)) => { approx_circle_on_curved_surface()