1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 17:24:20 +02:00

rename param

This commit is contained in:
Justin Lin
2019-09-21 10:18:22 +08:00
parent 45ccf8aed3
commit 2f16883109

View File

@@ -40,7 +40,7 @@ module floor_stand(width, height, thickness, spacing) {
linear_extrude(width / 1.5, center = true)
circle(thickness, $fn = 24);
cone(half_th - spacing, length = half_w / 1.5 - spacing, spacing = spacing, heads = true, void = true);
cone(half_th - spacing, length = half_w / 1.5 - spacing, spacing = spacing, ends = true, void = true);
}
}
}
@@ -62,7 +62,7 @@ module floor_stand(width, height, thickness, spacing) {
rotate([0, 90, 0]) {
linear_extrude(width / 1.5 - double_spacing, center = true)
circle(half_th, $fn = 24);
cone(half_th - spacing, length = half_w / 1.5 - spacing, spacing = spacing, heads = true);
cone(half_th - spacing, length = half_w / 1.5 - spacing, spacing = spacing, ends = true);
}
}