Updated linear_extrude_flat_option to used children() instead of the depracated child() module.
This commit is contained in:
parent
a5fb4d884b
commit
f918e6d8c4
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue