diff --git a/examples/floor_stand/floor_stand.scad b/examples/floor_stand/floor_stand.scad index dfd041b0..59d1bce0 100644 --- a/examples/floor_stand/floor_stand.scad +++ b/examples/floor_stand/floor_stand.scad @@ -125,8 +125,13 @@ module floor_stand(width, height, thickness, joint_spacing) { rotate(180) decorate() board_T(); - - children(); - rotate(180) - children(); + if($children == 1) { + children(); + rotate(180) + children(); + } + else { + children(0); + children(1); + } } \ No newline at end of file