From 998cffdcbf8d5568c9550da3dd1b963cabcc6277 Mon Sep 17 00:00:00 2001 From: Franz Dietrich Date: Thu, 21 May 2026 15:05:23 +0200 Subject: [PATCH] make the drwing of the center of the circle a regular feature. --- turtle-lib/src/drawing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turtle-lib/src/drawing.rs b/turtle-lib/src/drawing.rs index 1ec87c4..4dd8c83 100644 --- a/turtle-lib/src/drawing.rs +++ b/turtle-lib/src/drawing.rs @@ -360,7 +360,7 @@ fn draw_tween_arc( direction, ); - // Debug: draw center using Lyon tessellation + // Draw center using Lyon tessellation this helps visualizing what is done. if let Ok(mesh_data) = crate::tessellation::tessellate_circle(geom.center, 5.0, GRAY, true, 1.0) { draw_mesh(&mesh_data.to_mesh());