Files
spoolmount/v1/scad/objects/ptfe_guide.scad
2024-07-11 12:07:13 -07:00

30 lines
670 B
OpenSCAD

use <../lib/screw_hole.scad>
module ptfe_guide() {
translate([0, 0, 5])
difference() {
hull() {
for (x = [-22, 22]) {
for (y = [-4, 4]) {
for (z = [-3, 3]) {
translate([x, y, z])
sphere(d=4, $fn=100);
}
}
}
}
// Screw hole
translate([0, 0, -5])
screw_hole(10);
// PTFE holes
for (x = [-18, -10, 10, 18]) {
translate([x, 0, 0])
rotate([90, 0, 0])
cylinder(h=14, d=4.4, center=true, $fn=100);
}
}
}
ptfe_guide();