try making the frame wider than it is deep

the goal is to try to fit a hitstick-w into two frames
This commit is contained in:
Brian S. Stephan 2023-09-11 13:02:54 -05:00
parent 51ba220a5a
commit 3f0712af70
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
3 changed files with 5 additions and 9 deletions

View File

@ -44,7 +44,7 @@ lever_mount_z = 2;
// case dimensions
// base frame box. reminder: top of inside (including mounts) is chopped by top_plate_z for plates
frame_x = 183;
frame_x = 233;
frame_y = 208;
frame_z = 50;
@ -245,10 +245,6 @@ module top_plate_with_raised_overhang() {
}
}
module top_plate_with_raised_overhang_long() {
rotate([0, 0, -90]) top_plate_with_raised_overhang();
}
module frame_box() {
difference() {
roundedcube([frame_x, frame_y, frame_z], center=true, radius=3);

View File

@ -20,8 +20,8 @@ include <components.scad>
module dir_arc_24mm_6_button_panel() {
difference() {
top_plate_with_raised_overhang_long();
translate([-top_plate_x+105, -top_plate_y/2+135, 0]) dir_arc_24mm_6_button();
top_plate_with_raised_overhang();
translate([-71.5, -top_plate_y/2+122.5, 0]) dir_arc_24mm_6_button();
}
}

View File

@ -20,8 +20,8 @@ include <components.scad>
module dir_arc_plus_w_24mm_8_button_panel() {
difference() {
top_plate_with_raised_overhang_long();
translate([-top_plate_x+105, -top_plate_y/2+123, 0]) dir_arc_24mm_8_button_compressed();
top_plate_with_raised_overhang();
translate([-71.5, -top_plate_y/2+122.5, 0]) dir_arc_24mm_8_button_compressed();
translate([-34.5, 51, 0]) button_24mm_hole();
}
}