Neale Pickett
·
2026-03-16
main-stock.scad
1include <BOSL2/std.scad>
2use <stock.scad>
3
4$fn = $preview ? 0 : 180;
5
6// The important part of this one is the outside diameter
7id = 25;
8od = 33.5;
9union() {
10 stock(h=65, id=id, od=od);
11 up(60) tube(h=15, id=id, od=od, rounding2=0.5, anchor=BOTTOM);
12}