Improve sled
Add shaft holes and make more space between sled and tape.
This commit is contained in:
parent
442d4b4830
commit
5465c94e20
1 changed files with 17 additions and 3 deletions
|
@ -44,9 +44,23 @@ module linear_shafts() {
|
|||
cylinder(110, 3.5, 3.5);
|
||||
}
|
||||
|
||||
module sled() {
|
||||
translate([150, 130, 100])
|
||||
cube([30, 20, 50]);
|
||||
module sled(width = 20) {
|
||||
translate([150, 130, 100]) {
|
||||
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();
|
||||
|
|
Loading…
Add table
Reference in a new issue