Separate cutout aligner from mounting hole aligner

This commit is contained in:
Lauri Võsandi 2021-08-02 21:27:47 +03:00
parent ce51103851
commit a5fa3d2aff
1 changed files with 14 additions and 1 deletions

View File

@ -14,6 +14,19 @@ W = 160 - 40; // Internal width
H = 320 - 40; // Internal height
D = 200; // Internal depth
// Driver mounting hole alignment
translate([-200, 0]) {
difference() {
circle(d=122, $fn=100);
for ( i = [0 : 45 : 360] ){
rotate(i) {
translate([111/2,0]) circle(d=4, $fn=30);
translate([122/2,0]) rotate(45) square(2, center=true);
}
}
}
}
// Side panels & mounting holes
translate([D, 0]) {
difference() {
@ -23,7 +36,7 @@ translate([D, 0]) {
translate([0, 320/2 - 80]) {
difference() {
circle(d=122 + BD, $fn=100);
circle(d=122, $fn=100);
circle(d=95 + BD, $fn=100);
}
for ( i = [0 : 45 : 360] ){
rotate(i) {