From 57eaaabda562ee0e8a2cdce4ad4e4083513ecaa9 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 15 Feb 2023 14:51:31 +0100 Subject: [PATCH] Remove redundant comment --- crates/fj-math/src/arc.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/fj-math/src/arc.rs b/crates/fj-math/src/arc.rs index c9ccd3bb4..b4e5fabb8 100644 --- a/crates/fj-math/src/arc.rs +++ b/crates/fj-math/src/arc.rs @@ -62,7 +62,6 @@ impl Arc { (p1 - p0) / distance_between_endpoints * uv_factor; let unit_vector_midpoint_to_center = Vector::from([-unit_vector_p0_to_p1.v, unit_vector_p0_to_p1.u]); - // (cx, cy) is the center of the circle let center = Point { coords: (p0.coords + p1.coords) / 2. + unit_vector_midpoint_to_center * distance_center_to_midpoint,