1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-29 17:30:11 +02:00
This commit is contained in:
Justin Lin
2019-09-26 08:22:41 +08:00
parent ddbed585b0
commit 2cd6e31a65

View File

@@ -21,10 +21,10 @@ module connector_peg(radius, height, spacing = 0.5, void = false, ends = false)
module base(radius, lip_r) {
rotate_extrude() {
translate([0, total_height - h_head]) hull() {
translate([0, total_height - h_head])
hull() {
square([lip_r - r_diff, h_head]);
translate([0, half_h_unit])
square([lip_r, half_h_unit]);
translate([0, half_h_unit]) square([lip_r, half_h_unit]);
}
square([radius, total_height - h_head]);
}