From 9939e138cc6fc60f26d0b3ac778795b083192fa0 Mon Sep 17 00:00:00 2001 From: Sam Hadow Date: Wed, 15 Apr 2026 16:33:32 +0200 Subject: [PATCH] tray radius fix --- flower_pot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flower_pot.py b/flower_pot.py index 1589a06..ff016b9 100644 --- a/flower_pot.py +++ b/flower_pot.py @@ -72,7 +72,7 @@ def main() -> None: raise SystemExit(f"Missing file: {tray_scad}") render_scad(pot_scad, OUT_DIR / "pot.stl", base_radius, wall_height, wall_height_tray) - render_scad(tray_scad, OUT_DIR / "tray.stl", base_radius+10, wall_height, wall_height_tray) + render_scad(tray_scad, OUT_DIR / "tray.stl", base_radius*1.2, wall_height, wall_height_tray) print("\nDone.")