Some small adjustments to LM8UU width

This commit is contained in:
TQ Hirsch
2022-04-29 17:25:20 +02:00
parent ed9ff23991
commit 7abbb821ec
2 changed files with 15 additions and 13 deletions

View File

@@ -2,7 +2,7 @@ include <lib.scad>
stock_color = "#aaa"; stock_color = "#aaa";
bushing_od = 15; bushing_od = 15.2;
bushing_id = 8; bushing_id = 8;
bushing_len = 24; bushing_len = 24;

View File

@@ -17,16 +17,7 @@ module bearing_slot() {
} }
} }
let($fn = 30) { module clip_test() {
//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);
intersection() { intersection() {
translate([0,0,belt_width/2 + 4]) translate([0,0,belt_width/2 + 4])
union() { union() {
@@ -39,7 +30,18 @@ let($fn = 30) {
translate([-40, -40, 0]) translate([-40, -40, 0])
cube([80,80,belt_width + 2]); cube([80,80,belt_width + 2]);
} }
}
//gt2_clip_cutout(false);
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);
//clip_test();
} }