diff --git a/geometry/src/outline.rs b/geometry/src/outline.rs index 75c1cb1f..7c9a5eb1 100644 --- a/geometry/src/outline.rs +++ b/geometry/src/outline.rs @@ -376,7 +376,7 @@ impl Contour { mut end_angle: f32) { start_angle %= TWO_PI; end_angle %= TWO_PI; - if end_angle < start_angle { + if end_angle <= start_angle { end_angle += TWO_PI; }