From 6512d6f92bd9c6bb8dc598b60bfe0c923ca14a1d Mon Sep 17 00:00:00 2001 From: Ryan Balfanz Date: Thu, 15 Aug 2019 13:41:13 -0700 Subject: [PATCH] Use children() instead of child() > DEPRECATED: child() will be removed in future releases. Use children() instead. --- regular_shapes.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regular_shapes.scad b/regular_shapes.scad index 293d1c2..40f00cd 100644 --- a/regular_shapes.scad +++ b/regular_shapes.scad @@ -142,8 +142,8 @@ module tubify(radius,wall) { difference() { - child(0); - translate([0, 0, -0.1]) scale([(radius-wall)/radius, (radius-wall)/radius, 2]) child(0); + children(0); + translate([0, 0, -0.1]) scale([(radius-wall)/radius, (radius-wall)/radius, 2]) children(0); } }