Compare commits
No commits in common. "890aa4f1633ba5507bd23e37dc2333de8ce5ae45" and "1c8c5f070ee26a5be6565b494ac859bfa8e0f0ae" have entirely different histories.
890aa4f163
...
1c8c5f070e
|
@ -20,7 +20,7 @@ minkR_PF = 0.05 * 20; // Minkowski radius for the profile corners.
|
|||
|
||||
//CUSTOMIZER VARIABLES END
|
||||
|
||||
module 2020_tslot(height, core = ProfileCore) {
|
||||
module 2020_profile(height, core = ProfileCore) {
|
||||
linear_extrude(height = height, center = true)
|
||||
union() {
|
||||
difference() {
|
||||
|
@ -29,10 +29,10 @@ module 2020_tslot(height, core = ProfileCore) {
|
|||
square([1 * 20 - 2 * minkR_PF, 1 * 20 - 2 * minkR_PF], center = true);
|
||||
}
|
||||
translate([0, 0, 0]) circle(r = core / 2, $fn = 24);
|
||||
translate([-0.5 * 20 + 0.087 * 20, 0, 0]) 2020_tslot_void();
|
||||
rotate([0, 0, 180]) translate([-0.5 * 20 + 0.087 * 20, 0, 0]) 2020_tslot_void();
|
||||
translate([0, -0.5 * 20 + 0.087 * 20, 0]) rotate([0, 0, 90]) 2020_tslot_void();
|
||||
translate([0, 0.5 * 20 - 0.087 * 20, 0]) rotate([0, 0, -90]) 2020_tslot_void();
|
||||
translate([-0.5 * 20 + 0.087 * 20, 0, 0]) 2020_tslot();
|
||||
rotate([0, 0, 180]) translate([-0.5 * 20 + 0.087 * 20, 0, 0]) 2020_tslot();
|
||||
translate([0, -0.5 * 20 + 0.087 * 20, 0]) rotate([0, 0, 90]) 2020_tslot();
|
||||
translate([0, 0.5 * 20 - 0.087 * 20, 0]) rotate([0, 0, -90]) 2020_tslot();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -89,7 +89,7 @@ module double_cutout() {
|
|||
}
|
||||
}
|
||||
|
||||
module 2020_tslot_void() {
|
||||
module 2020_tslot() {
|
||||
union() {
|
||||
translate([minkR_TS, 0, 0])
|
||||
minkowski() {
|
Loading…
Reference in New Issue