First commit

This commit is contained in:
2025-06-28 15:32:11 +02:00
parent 7e1f5bdb1a
commit d140f010d0
60 changed files with 1378413 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
$fn=60;
include <BOSL2/std.scad>
include <boltsos_0.4.1/BOLTS.scad>
module m4_screw() {
rotate([0,180,90]) {
DIN931("M4");
translate([0,0,-1.3]) DIN931("M4");
}
}
rotate([0,180,0]) difference() {
ycyl(l=140, d=9, rounding=2);
* cuboid([9,130,9], rounding=3);
translate([0,50,-1.5]) rotate([0,180,90]) m4_screw();
translate([0,-50,-1.5]) rotate([0,180,90]) m4_screw();
}