diff options
Diffstat (limited to 'mech/pcb_case/rounded_cube.scad')
-rw-r--r-- | mech/pcb_case/rounded_cube.scad | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mech/pcb_case/rounded_cube.scad b/mech/pcb_case/rounded_cube.scad index 5f1dcee..acd50e7 100644 --- a/mech/pcb_case/rounded_cube.scad +++ b/mech/pcb_case/rounded_cube.scad @@ -5,7 +5,8 @@ module rounded_cube(dim, radius) { hull() { for (y=range_y, z=range_z) { - translate([0,y,z]) rotate([0,90,0]) cylinder(r=radius, h=height); + translate([0,y,z]) rotate([0,90,0]) + cylinder(r=radius, h=height, $fn=30); } } } |