Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
well_stiffening_height = 5;
plate_unholed_edge_w = 3;
+plate_mid_gap = 0.5;
driver_handle_shaft_l = 68.2 + 0.75;
driver_handle_total_l = 152.8 + 0.75;
}
}
+module OnePlate(mx) {
+ intersection(){
+ FullPlate();
+ mirror([ mx, 0,0 ])
+ linextr_x_yz(plate_mid_gap/2, box_x)
+ square(1000, center=true);
+ }
+}
+module LeftPlate() { ////toplevel
+ OnePlate(1);
+}
+module RightPlate() { ////toplevel
+ OnePlate(0);
+}
+
module OdAt(x,y) {
translate(fixing_pitch * [x,y,0])
children(0);