Compare commits

...

3 Commits

Author SHA1 Message Date
Brian S. Stephan c0c9b9e1dc
adjust how the lever mount is aligned to do the chopper right
Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-02-19 11:14:14 -06:00
Brian S. Stephan b7af797349
un-inset the bottom panels, the bottom is now flush
Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-02-19 10:41:59 -06:00
Brian S. Stephan dd3d77ae90
correct the hole for the panel-to-frame post
made it too small accidentally, which explains why I got test prints
stuck :p

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-02-19 10:33:16 -06:00
4 changed files with 8 additions and 12 deletions

View File

@ -8,7 +8,7 @@ include <components.scad>
module bottom_panel_solo() {
difference() {
rotate([180, 0, 0]) base_panel_with_raised_overhang();
overhang_plate();
rotate([180, 0, 0]) panel_holes();
}
}

View File

@ -6,8 +6,4 @@
include <parameters.scad>
include <components.scad>
module inset_bottom_panel() {
mirror([0, 0, 1]) bottom_panel();
}
inset_bottom_panel();
bottom_panel();

View File

@ -311,13 +311,13 @@ module frame() {
// slightly larger holes than the posts in the base_panel
translate([panel_to_frame_point_x, panel_to_frame_point_y, frame_z/2-panel_z-5])
scale([1.45, 1.45, 0.2]) frame_hex_bolt_hole();
scale([1.55, 1.55, 0.2]) frame_hex_bolt_hole();
translate([-panel_to_frame_point_x, panel_to_frame_point_y, frame_z/2-panel_z-5])
scale([1.45, 1.45, 0.2]) frame_hex_bolt_hole();
scale([1.55, 1.55, 0.2]) frame_hex_bolt_hole();
translate([panel_to_frame_point_x, -panel_to_frame_point_y, frame_z/2-panel_z-5])
scale([1.45, 1.45, 0.2]) frame_hex_bolt_hole();
scale([1.55, 1.55, 0.2]) frame_hex_bolt_hole();
translate([-panel_to_frame_point_x, -panel_to_frame_point_y, frame_z/2-panel_z-5])
scale([1.45, 1.45, 0.2]) frame_hex_bolt_hole();
scale([1.55, 1.55, 0.2]) frame_hex_bolt_hole();
}
}

View File

@ -11,11 +11,11 @@ module top_panel_left_lever() {
difference() {
// base plate
union() {
translate([0,-20,0]) panel_with_raised_overhang();
panel_with_raised_overhang();
translate([0, 0, -((panel_z/2)+(lever_mount_z/2))]) levermountbase();
}
// holes to mount the lever
levermountholes();
translate([0, 20, 0]) levermountholes();
side_chopper();
}
}