flower pot + generation script

This commit is contained in:
2026-04-15 15:54:27 +02:00
parent 31d13ccd0d
commit 060b8efdfc
4 changed files with 150 additions and 3 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
// --- Parameters ---
base_radius = 55;
wall_height = 20;
wall_height_tray = 20;
thickness = 1.5;
flare_angle = 20;
$fn = 500;
@@ -11,8 +11,8 @@ rotate_extrude() {
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 + wall_height_tray * tan(flare_angle), wall_height_tray],
[base_radius + wall_height_tray * tan(flare_angle) - (thickness / cos(flare_angle)), wall_height_tray],
[base_radius - thickness, thickness],
[0, thickness]
]);