From 31d13ccd0d06578d4b4205a2183e8cf1c25664be Mon Sep 17 00:00:00 2001 From: Sam Hadow Date: Wed, 15 Apr 2026 15:15:46 +0200 Subject: [PATCH] flower pot tray --- flower_pot/tray.scad | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 flower_pot/tray.scad diff --git a/flower_pot/tray.scad b/flower_pot/tray.scad new file mode 100644 index 0000000..01046a7 --- /dev/null +++ b/flower_pot/tray.scad @@ -0,0 +1,19 @@ +// --- Parameters --- +base_radius = 55; +wall_height = 20; +thickness = 1.5; +flare_angle = 20; +$fn = 500; + +rotate_extrude() { + offset(r = 0.5) + offset(delta = -0.5) + polygon(points = [ + [0, 0], + [base_radius, 0], + [base_radius + wall_height * tan(flare_angle), wall_height], + [base_radius + wall_height * tan(flare_angle) - (thickness / cos(flare_angle)), wall_height], + [base_radius - thickness, thickness], + [0, thickness] + ]); +} \ No newline at end of file