properly center frame mounting holes

noticed this after my first print, it's a fix for v1 but I don't think
I'll bother reprinting my stuff yet
This commit is contained in:
Brian S. Stephan 2023-08-20 18:24:25 -05:00
parent 40692bb6ff
commit 80079a74a8
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 6 additions and 6 deletions

View File

@ -30,10 +30,10 @@ module left_frame() {
difference() {
base_left_frame();
// connection holes to other frames
frame_connection_holes();
translate([0, 0, -top_plate_z/2]) frame_connection_holes();
// cable routing hole
frame_cable_routing_hole();
translate([0, 0, -top_plate_z/2]) frame_cable_routing_hole();
// aux button holes
translate([0, 100, 0]) rotate([90, 0, 0]) button_24mm_hole();

View File

@ -31,12 +31,12 @@ module middle_frame() {
difference() {
base_middle_frame();
// connection holes to other frames
frame_connection_holes();
mirror([1, 0, 0]) frame_connection_holes();
translate([0, 0, -top_plate_z/2]) frame_connection_holes();
translate([0, 0, -top_plate_z/2]) mirror([1, 0, 0]) frame_connection_holes();
// cable routing holes
frame_cable_routing_hole();
mirror([1, 0, 0]) frame_cable_routing_hole();
translate([0, 0, -top_plate_z/2]) frame_cable_routing_hole();
translate([0, 0, -top_plate_z/2]) mirror([1, 0, 0]) frame_cable_routing_hole();
// neutrik mounts for connector, switches
translate([0, 100, 0]) rotate([90, 0, 0]) neutrik_d_mount();