Updated linear_extrude_flat_option to used children() instead of the depracated child() module.

This commit is contained in:
gizmoplex 2015-12-05 13:45:14 -05:00
parent a5fb4d884b
commit f918e6d8c4

View file

@ -401,11 +401,11 @@ module linear_exturde_flat_option(flat =false, height = 10, center = false, conv
{ {
if(flat==false) 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 else
{ {
child(0); children(0);
} }
} }