use <threads-scad/threads.scad>;
intersection() {
union() {
ScrewThread(5, 10);
ScrewHole(5, 10)
cylinder(d=10,h=10);
}
cube(10);
}
use <threads-scad/threads.scad>;
intersection() {
union() {
ScrewThread(5, 10);
ScrewHole(5, 10, pitch=0.8)
cylinder(d=10,h=10);
}
cube(10);
}