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:
parent
40692bb6ff
commit
80079a74a8
@ -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();
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user