1
0
mirror of https://github.com/whowechina/popn_pico.git synced 2024-11-13 18:20:46 +01:00
popn_pico/CASE/screw_spacer.scad

17 lines
273 B
OpenSCAD
Raw Permalink Normal View History

$fn=64;
2022-10-15 10:41:29 +02:00
for (i=[0:6]) {
spacer([i*9,0,0]);
}
module spacer(pos)
{
translate(pos) union() {
difference() {
2022-10-15 10:41:29 +02:00
cylinder(d=7,h=3.5);
translate([0,0,-1]) cylinder(d=3.5,h=10);
}
translate([2,-1,]) cube([4,2,0.3]);
}
}