Improve sled

Add shaft holes and make more space between sled and tape.
This commit is contained in:
finga 2025-01-11 22:07:49 +01:00
parent 442d4b4830
commit 5465c94e20

View file

@ -44,9 +44,23 @@ module linear_shafts() {
cylinder(110, 3.5, 3.5); cylinder(110, 3.5, 3.5);
} }
module sled() { module sled(width = 20) {
translate([150, 130, 100]) translate([150, 130, 100]) {
cube([30, 20, 50]); difference() {
cube([30, width, 50]);
union() {
translate([-30, width, -40])
rotate([90, 0, 0])
cylinder(width, 60, 60);
translate([10, width, 40])
rotate([90, 0, 0])
cylinder(width, 4, 4);
translate([20, width, 10])
rotate([90, 0, 0])
cylinder(width, 4, 4);
}
}
}
} }
color([0,0,0]) floor(); color([0,0,0]) floor();