From: Ian Jackson Date: Mon, 5 May 2014 16:38:46 +0000 (+0100) Subject: velux-window-grip: it broke, so make thicker: fix up so head stays put when we edit... X-Git-Tag: filamentspool-v2-release~391 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=f7540b054e5dbba57bdea03add99f130837115ac;p=reprap-play.git velux-window-grip: it broke, so make thicker: fix up so head stays put when we edit main_thick --- diff --git a/velux-window-grip.scad b/velux-window-grip.scad index 330ac64..28e228e 100644 --- a/velux-window-grip.scad +++ b/velux-window-grip.scad @@ -126,11 +126,13 @@ module Attach(){ } module Combine(){ - linear_extrude(height=width) - translate([0,at_offset_y,0]) - MainLoop(); - translate([0,0, width/2]) - Attach(); + translate([0,-main_thick/2,0]){ + linear_extrude(height=width) + translate([0,at_offset_y,0]) + MainLoop(); + translate([0,0, width/2]) + Attach(); + } } Combine();