X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=xeno-drivebay-bracket.scad;fp=xeno-drivebay-bracket.scad;h=0f18a3b5ba7a1558c72d5669c141f38099ffd31b;hp=66b520ea673100583460646d95865818936baced;hb=ec53b971a6cea6a7c4bb35f312f01dd907a52563;hpb=721af5823601915ba96703f4b2d4dd9d5c80d7ed diff --git a/xeno-drivebay-bracket.scad b/xeno-drivebay-bracket.scad index 66b520e..0f18a3b 100644 --- a/xeno-drivebay-bracket.scad +++ b/xeno-drivebay-bracket.scad @@ -1,6 +1,6 @@ // -*- C -*- -basel = 20; +basel = 23; basew = 27; baset = 4.0; @@ -11,12 +11,21 @@ wallh = 42; baseholesz = 4; // fixme check baseholeslot = 4; +topl = 20; + holeslop = 0.5; +webt = 3; + +padt = 3; +padw = 20; +padl = padw; +padholesz = 5.0; + walll = basel; wallholeh = 6+14+2; wallholesz = 3.0; // fixme check -wallholeslot = 3.0; +wallholeslot = 4.5; module slothole(sz, slot, thick) { hull(){ @@ -29,19 +38,34 @@ module slothole(sz, slot, thick) { } } -difference(){ - translate([0, -basew, 0]) - cube([basel, basew, baset]); +module Bracket(){ + difference(){ + translate([0, -basew, 0]) + cube([basel, basew, baset]); - translate([basel/2, -(basew+wallt)/2, 0]) - slothole(baseholesz, baseholeslot, baset); -} + translate([basel/2, -(basew+wallt)/2, 0]) + slothole(baseholesz, baseholeslot, baset); + } -difference(){ - translate([0, -wallt, 0]) - cube([walll, wallt, wallh]); + difference(){ + translate([0, -wallt, 0]) + cube([walll, wallt, wallh]); - translate([basel/2, 0, wallholeh]) - rotate([90,0,0]) - slothole(wallholesz, wallholeslot, wallt); + translate([basel/2, 0, wallholeh]) + rotate([90,90,0]) + slothole(wallholesz, wallholeslot, wallt); + } + + translate([basel-0.01, -basew, 0]) + cube([webt+0.02, basew, wallh]); + + translate([basel+webt, -padw, wallh-padt]) { + difference(){ + cube([padl, padw, padt]); + translate([padl/2, padw/2, -1]) + cylinder(r=padholesz/2 + holeslop, h=padt+2); + } + } } + +Bracket();