aboutsummaryrefslogtreecommitdiff
path: root/src/sticker_tray_7_lid.scad
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2026-08-08 13:55:25 +0200
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2026-08-11 15:49:51 +0200
commit70bb901308bdb4793e1c233ccf0ba53d42c515e9 (patch)
treee13c34308f66ac1c5150363a9abb884820dbe106 /src/sticker_tray_7_lid.scad
parent8b990670f752851d4a5047fbe5db0c64fb734924 (diff)
Tray with lid for Standard hexagonal stickers
Diffstat (limited to 'src/sticker_tray_7_lid.scad')
-rw-r--r--src/sticker_tray_7_lid.scad11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/sticker_tray_7_lid.scad b/src/sticker_tray_7_lid.scad
new file mode 100644
index 0000000..1eceb73
--- /dev/null
+++ b/src/sticker_tray_7_lid.scad
@@ -0,0 +1,11 @@
+use <lib/hexagons.scad>
+
+sticker_side = 25;
+tray_inner_side = 25 * 1.25 - 4;
+
+union() {
+ hexagon_lid(side = tray_inner_side);
+ for (i = [0:6] ) {
+ rotate([0, 0, 60 * i]) translate([0, (tray_inner_side) * sqrt(3) + 2, 0]) hexagon_lid(side = tray_inner_side);
+ }
+}