From 2f16883109462a9919ae361987e9677f8f8e42ba Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sat, 21 Sep 2019 10:18:22 +0800 Subject: [PATCH] rename param --- examples/floor_stand/floor_stand.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/floor_stand/floor_stand.scad b/examples/floor_stand/floor_stand.scad index da000b63..18762fa7 100644 --- a/examples/floor_stand/floor_stand.scad +++ b/examples/floor_stand/floor_stand.scad @@ -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); } }