1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-30 18:00:01 +02:00
This commit is contained in:
Justin Lin
2019-09-26 12:08:51 +08:00
parent 8bb38eceb2
commit dfec4ba772

View File

@@ -1,9 +1,9 @@
module joint_T(shaft_r, shaft_h, t_leng, ring_thickness, spacing = 0.5, center = false) {
ring_r = shaft_r + spacing + ring_thickness;
module joint_T(shaft_r, shaft_h, t_leng, thickness, spacing = 0.5, center = false) {
ring_r = shaft_r + spacing + thickness;
module joint_ring() {
difference() {
circle(ring_r);
circle(ring_r - ring_thickness);
circle(ring_r - thickness);
}
}