uilleann

3d printable Uilleann bagpipes
git clone https://git.woozle.org/neale/uilleann.git

commit
edbb141
parent
0a07a03
author
Neale Pickett
date
2026-03-16 12:39:58 -0600 MDT
main-stock work
1 files changed,  +6, -2
M daye/misc/main-stock.scad
+6, -2
 1@@ -1,8 +1,12 @@
 2 include <BOSL2/std.scad>
 3 use <stock.scad>
 4 
 5+$fn = $preview ? 0 : 180;
 6+
 7 // The important part of this one is the outside diameter
 8+id = 25;
 9+od = 33.5;
10 union() {
11-  stock(h=65, id=25, od=33.5);
12-  translate([0, 0, 60]) tube(h=15, id=25, od=33.5, rounding2=0.5, anchor=BOTTOM);
13+  stock(h=65, id=id, od=od);
14+  up(60) tube(h=15, id=id, od=od, rounding2=0.5, anchor=BOTTOM);
15 }