use use <../library/logo.scad> use HP = 5.07; HEIGHT = 128.5; THICKNESS = 2.5; WIDTH_HP = 10; CENTER_HP = WIDTH_HP/2; CLEARANCE = 0.2; module pot_hole() { translate([0,0,-1]) cylinder(r=3.75, h=10, $fn=20); } module jack_hole() { translate([0,0,-1]) cylinder(r=3.25, h=10, $fn=20); translate([0,0,THICKNESS-1-2]) cylinder(r=5, h=2, $fn=20); } module switch_hole() { translate([0,0,-1]) cylinder(r=3.25, h=10, $fn=20); } module thing() { difference() { translate([CLEARANCE,0,0]) plate(WIDTH_HP*HP-2*CLEARANCE, 1.5*HP, THICKNESS); translate([CENTER_HP*HP-5,6,THICKNESS-1]) logo(3.5, 8); } } rotate([180,0,0]) thing();