From 1ccf2e7f6e3d06fa5b082741a5b3dee601e45efb Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 8 Oct 2017 00:04:41 +0100 Subject: [PATCH] poster-tube-lid: wip --- poster-tube-lid.scad | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/poster-tube-lid.scad b/poster-tube-lid.scad index c96c86b..13a5a8b 100644 --- a/poster-tube-lid.scad +++ b/poster-tube-lid.scad @@ -16,7 +16,7 @@ bayo_interf = 0.75; bayo_behind = 3.5; seal_thick = 0.1; -seal_pocket = 2.0; +seal_recess = [ 2.0, 2.0 ]; // recess depth, recess height side_taper = 1.0; @@ -41,10 +41,17 @@ module MainProfile(){ square([10,10]); } } - %polygon([[ -1, seal_thick ], - [ -1, top_z ], - [ main_cnr_pos[0], top_z ], - [ side_thick, main_cnr_pos[1] ]]); + polygon([[ -1, seal_thick ], + [ -1, top_z ], + [ main_cnr_pos[0], top_z ], + [ side_thick, main_cnr_pos[1] ], + [ side_thick, -side_height ], + [ side_taper, -side_height ], + [ 0, -rivet_posn ], + [ 0, -(seal_recess[0] + seal_recess[1]) ], + [ seal_recess[0], -(seal_recess[0]) ], + [ seal_recess[0], seal_thick ], + ]); } MainProfile(); -- 2.30.2