This commit is contained in:
2025-06-28 15:45:58 +02:00
parent d140f010d0
commit ead70745d1
260 changed files with 1121678 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
$fn=60;
include <BOSL2/std.scad>
leg_l=150;
leg_h=16;
leg_w=10;
module leg() {
difference() {
union() {
cuboid([leg_l-leg_h/1.5,leg_h,leg_w], rounding=2);
translate([68,0,0]) zcyl(l=leg_w, d=leg_h, rounding=2);
translate([-68,0,0]) zcyl(l=leg_w, d=leg_h, rounding=2);
}
translate([68,0,0]) zcyl(l=leg_w, d=5.5, rounding=-1);
translate([-68,0,0]) zcyl(l=leg_w, d=5.5, rounding=-1);
}
}
for(i=[0:1:2]) {
translate([0, (leg_h+5)*i,0]) {
leg();
}
}