pedalboard/umc404_mount.scad

74 lines
1.7 KiB
OpenSCAD
Raw Permalink Normal View History

depth=107;
height=44;
thickness=5;
cube([10, depth, thickness]);
translate([-2,-thickness, 0])
cube([10+2, thickness, height+thickness]);
translate([-2,depth, 0])
cube([10+2, thickness, height+thickness]);
translate([-2, 0, 0])
cube([2, depth, height+thickness]);
2024-12-28 17:12:55 +01:00
translate([0,0,height]) {
difference() {
hull() {
translate([-5, 2*depth/3,0])
cylinder(h=thickness, d=10, $fn=64);
2024-12-28 17:12:55 +01:00
translate([-5, 1*depth/3,0])
cylinder(h=thickness, d=10, $fn=64);
2024-12-28 17:12:55 +01:00
translate([-1, 4*depth/5,0])
cylinder(h=thickness, d=2, $fn=64);
2024-12-28 17:12:55 +01:00
translate([-1, 1*depth/5,0])
cylinder(h=thickness, d=2, $fn=64);
2024-12-29 01:10:43 +01:00
2024-12-29 12:06:18 +01:00
translate([-2, depth/2-25, -height])
2024-12-29 01:10:43 +01:00
cube([1, 50, 1]);
2024-12-28 17:12:55 +01:00
}
translate([-6, 2*depth/3, 0])
2024-12-28 17:12:55 +01:00
cylinder(h=thickness, d=2, $fn=64);
2024-12-29 01:10:43 +01:00
translate([-6, 2*depth/3, -100+2])
cylinder(h=100, d=4.5, $fn=64);
2024-12-28 17:12:55 +01:00
translate([-6, 1*depth/3, 0])
cylinder(h=thickness, d=2, $fn=64);
2024-12-29 01:10:43 +01:00
translate([-6, 1*depth/3, -100+2])
cylinder(h=100, d=4.5, $fn=64);
2024-12-28 17:12:55 +01:00
}
}
// back screw
2024-12-28 17:12:55 +01:00
translate([0,depth+thickness,height]) {
difference() {
hull() {
translate([5,5,0])
cylinder(h=thickness, d=5, $fn=64);
translate([0.5, 0,0])
cylinder(h=thickness, d=thickness, $fn=64);
translate([10-thickness/2, 0,0])
cylinder(h=thickness, d=thickness, $fn=64);
2024-12-29 12:06:18 +01:00
translate([-2, 0, -height])
cube([10+2,1,1]);
2024-12-28 17:12:55 +01:00
}
translate([5, 4, 0])
cylinder(h=thickness, d=2, $fn=64);
2024-12-29 12:06:18 +01:00
translate([5, 4, -100+2])
cylinder(h=100, d=4.5, $fn=64);
}
}