From a5fa3d2aff227f21ab0727e7a1da2f69ffc8fcc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20V=C3=B5sandi?= Date: Mon, 2 Aug 2021 21:27:47 +0300 Subject: [PATCH] Separate cutout aligner from mounting hole aligner --- b100.scad | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/b100.scad b/b100.scad index a764040..086bb68 100644 --- a/b100.scad +++ b/b100.scad @@ -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) {