From: Ian Jackson Date: Fri, 30 Oct 2015 17:34:13 +0000 (+0000) Subject: led-panel-ceiling-bracket: swap order to make % of cube show us bolt holes (nfc) X-Git-Tag: filamentspool-v2-release~142 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1fe6d1dcc303d4e26b46a27210fa0a40e614730b;p=reprap-play.git led-panel-ceiling-bracket: swap order to make % of cube show us bolt holes (nfc) --- diff --git a/led-panel-ceiling-bracket.scad b/led-panel-ceiling-bracket.scad index ae3456c..03e1ffb 100644 --- a/led-panel-ceiling-bracket.scad +++ b/led-panel-ceiling-bracket.scad @@ -25,14 +25,6 @@ module Bracket(){ difference(){ translate([-len/2, 0, 0]) cube([len, width, height]); - translate([0, width/2, 0]) { - cylinder(r= plasfix_dia/2, h=50, $fn=20); - hull(){ - cylinder(r= plasfix_dia/2, h= plasfix_headdep + plasfix_sink, $fn=20); - translate([0,0,-1]) - cylinder(r= plasfix_head/2, h= plasfix_sink + 1, $fn=20); - } - } for (xsgn=[-1,+1]) { translate([xsgn * holespc/2, -1, light_height - hole_from_back + extra_height]) { @@ -46,6 +38,14 @@ module Bracket(){ } } } + translate([0, width/2, 0]) { + cylinder(r= plasfix_dia/2, h=50, $fn=20); + hull(){ + cylinder(r= plasfix_dia/2, h= plasfix_headdep + plasfix_sink, $fn=20); + translate([0,0,-1]) + cylinder(r= plasfix_head/2, h= plasfix_sink + 1, $fn=20); + } + } } }