Fixed bug in butt_box.scad when box was tall enough for extra fixing blocks.

This commit is contained in:
Chris Palmer 2019-07-06 16:26:56 +01:00
parent 0fb0432b39
commit d068b972ff
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ function fixing_block_positions(type) = let(
for(i = [0 : 1 : hspans - 1], x = [-1, 1], y = [-1, 1])
translate([x * width / 2, y * depth / 2, (i - (hspans - 1) / 2) * hspan]) *
rotate([y > 0 ? 180 : 0, x * y * 90]),
rotate([y > 0 ? 180 : 0, x * y * 90, 0]),
];