Added test prints, small updates

This commit is contained in:
2022-04-02 14:41:45 +02:00
parent 377e122f21
commit e9fad1ff5c
5 changed files with 38 additions and 5 deletions

28
test_prints.scad Normal file
View File

@@ -0,0 +1,28 @@
include <constants.scad>;
include <parts.scad>;
module bearing_slot() {
intersection() {
difference() {
translate([- frame_size / 2, - frame_size / 2, 1])
cube([frame_size, frame_size, 10]);
cylinder(d = bushing_od, h = 6);
cylinder(d = rail_diam, h = 12);
}
union() {
cylinder(h = 12, d = frame_size);
translate([-frame_size/2, 0, 0])
cube([frame_size, frame_size, frame_size]);
}
}
}
let($fn = 30) {
translate([-28, 0, frame_size/2])
rotate([0,90,0]) bearing_slot();
translate([28, 0, frame_size/2])
rotate([0,-90,0]) bearing_slot();
idler_post(10);
}