center the button panels and their layouts

I can refactor the double translation away at soem later point
This commit is contained in:
Brian S. Stephan 2023-08-30 00:22:31 -05:00
parent 16d3feadc1
commit fe0e3b6017
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
6 changed files with 9 additions and 9 deletions

View File

@ -307,7 +307,7 @@ module dir_arc_24mm_8_button_compressed() {
// Directional Arc (left hand)
module dir_arc_30mm_button_l() {
translate([68, 132, 0]) button_30mm_hole_for_snapins();
translate([-top_plate_x/2, -top_plate_y/2, 0]) translate([68, 132, 0]) button_30mm_hole_for_snapins();
}
module dir_arc_w_30mm() {
@ -316,7 +316,7 @@ module dir_arc_w_30mm() {
translate([35+33.5, -12.9, 0]) dir_arc_30mm_button_l();
translate([35+7, 34.5, 0]) dir_arc_30mm_button_l();
// just my guesstimate on this one, but note that this is the same position as sega 2p (just mirrored)
translate([top_plate_x-33.06, 145-19-9-11-19-9-11, 0]) button_30mm_hole_for_snapins();
translate([-top_plate_x/2, -top_plate_y/2, 0]) translate([top_plate_x-33.06, 145-19-9-11-19-9-11, 0]) button_30mm_hole_for_snapins();
}
module dir_arc_w_30mm_plus_one() {
@ -327,7 +327,7 @@ module dir_arc_w_30mm_plus_one() {
// Namco Noir (right hand)
module noir_button_p1() {
translate([40, 145, 0]) button_30mm_hole_for_snapins();
translate([-top_plate_x/2, -top_plate_y/2, 0]) translate([40, 145, 0]) button_30mm_hole_for_snapins();
}
module noir_plus_one() {
@ -348,7 +348,7 @@ module noir_plus_one() {
// Sega Astro City 2P (right hand)
module sega_2p_p1() {
translate([33.06, 145, 0]) button_30mm_hole_for_snapins();
translate([-top_plate_x/2, -top_plate_y/2, 0]) translate([33.06, 145, 0]) button_30mm_hole_for_snapins();
}
module sega_2p_plus_one() {

View File

@ -21,7 +21,7 @@ use <top-panel-dir_arc-plus-w-30mm-plus-one.scad>
module dir_arc_w_30mm_plus_one_panel_with_mount() {
dir_arc_w_30mm_plus_one_panel();
translate([65, 55, -(top_plate_z/2) - 3]) pcb_mount();
translate([-15, -40, -(top_plate_z/2) - 3]) rotate([0, 0, -15]) pcb_mount();
}
dir_arc_w_30mm_plus_one_panel_with_mount();

View File

@ -20,7 +20,7 @@ include <components.scad>
module dir_arc_w_30mm_plus_one_panel() {
difference() {
translate([top_plate_x/2, top_plate_y/2, 0]) topplate();
topplate();
dir_arc_w_30mm_plus_one();
}
}

View File

@ -20,7 +20,7 @@ include <components.scad>
module namco_noir_plus_one_panel() {
difference() {
translate([top_plate_x/2, top_plate_y/2, 0]) topplate();
topplate();
noir_plus_one();
}
}

View File

@ -20,7 +20,7 @@ include <components.scad>
module namco_noir_plus_two_panel() {
difference() {
translate([top_plate_x/2, top_plate_y/2, 0]) topplate();
topplate();
noir_plus_one();
translate([32.94-3.47-3.47, -78+7.37+4.49, 0]) noir_button_p1();
}

View File

@ -20,7 +20,7 @@ include <components.scad>
module sega_2p_plus_one_panel() {
difference() {
translate([top_plate_x/2, top_plate_y/2, 0]) topplate();
topplate();
sega_2p_plus_one();
}
}