From: Ian Jackson Date: Wed, 31 Oct 2018 01:07:35 +0000 (+0000) Subject: ksafe-base: cutting, introduce cut (nfc) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=a604301d71ccb2b91482f7264229c3bc4cac1c60 ksafe-base: cutting, introduce cut (nfc) Signed-off-by: Ian Jackson --- diff --git a/ksafe-base.scad b/ksafe-base.scad index 87a6031..c9ddf77 100644 --- a/ksafe-base.scad +++ b/ksafe-base.scad @@ -220,12 +220,14 @@ module Box(){ } module KsafeBase(){ + cut = main_sz + 20; + difference(){ Box(); // bolt holes translate([0,0, -bolt_above -0.5 * bolthole_height]) - cube(center=true, [ main_sz + 20, bolthole_width, bolthole_height ]); + cube(center=true, [ cut, bolthole_width, bolthole_height ]); } }