Skip to content

Commit

Permalink
Fix for revarbat#58.
Browse files Browse the repository at this point in the history
  • Loading branch information
revarbat committed Apr 19, 2020
1 parent 03bb271 commit a2196d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shapes.scad
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ module cuboid(
size = scalar_vec3(size);
if (is_def(p1)) {
if (is_def(p2)) {
translate([for (v=array_zip([p1,p2],0)) min(v)]) {
translate([for (v=array_zip([p1,p2],fill=0)) min(v)]) {
cuboid(size=vabs(p2-p1), chamfer=chamfer, fillet=fillet, edges=edges, trimcorners=trimcorners, align=V_ALLPOS);
}
} else {
Expand Down

0 comments on commit a2196d5

Please sign in to comment.