Old change I can't remember the context of
This commit is contained in:
parent
dfdd8c480b
commit
c68d826d8b
|
@ -37,6 +37,19 @@ module cap_outline(radius = 1.5, fingerboard_min_thick = 2.5, fingerboard_max_th
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module cap_outline_bridge(radius = 1.5, fingerboard_min_thick = 2.5, fingerboard_max_thick = 5) {
|
||||||
|
minkowski($fn = mink_fn_2d) {
|
||||||
|
circle(r = radius);
|
||||||
|
difference() {
|
||||||
|
translate(T_circumcenter) hull() {
|
||||||
|
circle(r = tube_radius - radius);
|
||||||
|
translate([50,0]) square([1,(tube_radius - radius)*2], true);
|
||||||
|
}
|
||||||
|
translate([fingerboard_max_thick - radius, -50]) square([100,100]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function T_hole_points(r = 4, a_step = 5, offset = 0) =
|
function T_hole_points(r = 4, a_step = 5, offset = 0) =
|
||||||
let(
|
let(
|
||||||
|
|
Loading…
Reference in New Issue