Add Kormoran

This commit is contained in:
Lauri Võsandi 2021-07-31 07:33:37 +03:00
parent 36d66d1f3b
commit 24a9ebcc40
1 changed files with 28 additions and 0 deletions

28
kormoran.scad Normal file
View File

@ -0,0 +1,28 @@
B = 19.05; // Bushing outer diameter
M = 6.35; // Mill diameter
J = 100; // Mill pad
A = 5; // Alignment pad size
P = 17; // Alignment pad placement
BD = B - M; // Bushing offset
W = 150+15+15;
H = 280+15+15;
translate([200, 0])
difference() {
square([W, H], center=true);
translate([-182/2+117, +312/2-82])
difference() {
circle(d=90+BD);
circle(d=65+BD);
}
}
difference() {
square([W, H], center=true);
translate([0, -312/2+110])
difference() {
circle(d=146+BD, $fn=100);
circle(d=119+BD, $fn=100);
}
}