From f556c5430010983d87eca16d003285047b96dd1f Mon Sep 17 00:00:00 2001 From: gabsi26 <63023569+gabsi26@users.noreply.github.com> Date: Mon, 23 May 2022 16:52:50 +0200 Subject: [PATCH] Formatting Sorry for spamming won't happen again --- crates/fj/src/angle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fj/src/angle.rs b/crates/fj/src/angle.rs index 03b1a6c00..2110353e7 100644 --- a/crates/fj/src/angle.rs +++ b/crates/fj/src/angle.rs @@ -32,7 +32,7 @@ impl Angle { fn wrap(rad: f64) -> f64 { let modulo = rad % (2. * PI); if modulo < 0. { - 2. * PI + modulo + 2. * PI + modulo } else { modulo }