1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-31 18:22:08 +02:00
This commit is contained in:
Justin Lin
2021-11-09 16:57:51 +08:00
parent 3b5af34041
commit 3fbee973a9
3 changed files with 67 additions and 63 deletions

View File

@@ -63,4 +63,26 @@ module tail_scales(ang, leng, radius, height, thickness) {
one_scale();
}
}
}
module knee_scales(ang, leng, radius, height, thickness) {
module one_scale() {
rotate([0, ang, 0])
shear(sx = [0, -2])
linear_extrude(thickness, center = true)
scale([leng, 1])
circle(1);
}
for(a = [0:60:300]) {
hull() {
rotate(a)
translate([radius, 0, height])
one_scale();
rotate(a + 15)
translate([radius, 0, height + 1.75])
one_scale();
}
}
}