From f918e6d8c4dab3e54787308be3a9f187f276d2f4 Mon Sep 17 00:00:00 2001 From: gizmoplex Date: Sat, 5 Dec 2015 13:45:14 -0500 Subject: [PATCH] Updated linear_extrude_flat_option to used children() instead of the depracated child() module. --- involute_gears.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/involute_gears.scad b/involute_gears.scad index c3afeba..98ea26c 100644 --- a/involute_gears.scad +++ b/involute_gears.scad @@ -401,11 +401,11 @@ module linear_exturde_flat_option(flat =false, height = 10, center = false, conv { if(flat==false) { - linear_extrude(height = height, center = center, convexity = convexity, twist= twist) child(0); + linear_extrude(height = height, center = center, convexity = convexity, twist= twist) children(0); } else { - child(0); + children(0); } }