From fa50ad021f9e476b62f1ada39d08183c85436e6e Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 30 Dec 2014 22:20:53 +0000 Subject: [PATCH 1/1] knifeblock: rounded front corners --- knifeblock.scad | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/knifeblock.scad b/knifeblock.scad index 686644a..31e3654 100644 --- a/knifeblock.scad +++ b/knifeblock.scad @@ -66,9 +66,13 @@ module Block(){ maxx = maxkx + side; difference(){ - translate([minx, -front, 0]) - mirror([0,0,1]) - cube([maxx-minx, totaldepth, height]); + hull() mirror([0,0,1]) { + translate([minx, 0, 0]) + cube([maxx-minx, totaldepth-front, height]); + for (x=[minx + front/2, maxx - front/2]) + translate([x, -front/2, 0]) + cylinder(r=side/2, h=height, $fn=30); + } #DoKnives(); } } -- 2.30.2