From: Ian Jackson Date: Fri, 25 Dec 2015 17:38:13 +0000 (+0000) Subject: pattress-boxes-3-cover: LidSide, wip X-Git-Tag: filamentspool-v2-release~57 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=555a02d54556725cebdab1fc14f781dbff968025;p=reprap-play.git pattress-boxes-3-cover: LidSide, wip --- diff --git a/pattress-boxes-3-cover.scad b/pattress-boxes-3-cover.scad index 1ddf999..b30268b 100644 --- a/pattress-boxes-3-cover.scad +++ b/pattress-boxes-3-cover.scad @@ -1,6 +1,6 @@ // -*- C -*- -patbox_side = 87; +patbox_side = 87 + 0.5; patbox_centres = 60.3; lid_box_overlap = 5; @@ -14,6 +14,7 @@ thinbox_len = 87; lid_top_wall = 1.5; lid_front_wall = 1.5; +lid_side_wall = 1.5; // computed @@ -31,4 +32,10 @@ module LidSideProfile(){ [-lid_top_wall, -lid_front_wall]]); } -LidSideProfile(); +module LidSide(){ + rotate([90,0,0]) + linear_extrude(height= lid_side_wall) + LidSideProfile(); +} + +LidSide();