From b803db7f71deae2bc3aaca21ad16a724fa501819 Mon Sep 17 00:00:00 2001 From: Sam Hadow Date: Wed, 15 Apr 2026 16:15:09 +0200 Subject: [PATCH] tray fix + hole fixes --- flower_pot.py | 2 +- flower_pot/pot.scad | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flower_pot.py b/flower_pot.py index 43d6936..0efef9d 100644 --- a/flower_pot.py +++ b/flower_pot.py @@ -70,7 +70,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, wall_height, wall_height_tray) + render_scad(tray_scad, OUT_DIR / "tray.stl", base_radius+10, wall_height, wall_height_tray) print("\nDone.") diff --git a/flower_pot/pot.scad b/flower_pot/pot.scad index 88f0279..b91bbe2 100644 --- a/flower_pot/pot.scad +++ b/flower_pot/pot.scad @@ -56,7 +56,7 @@ module holes_pattern() { union() { circle(d = hole_d); - for(r = [18, 30]) { + for(r = [base_radius * 0.33, base_radius * 0.66]) { for(a = [0 : 60 : 359]) { rotate([0, 0, a]) translate([r, 0, 0])