From f8495e0458a6fa7a3070b1071469f8b6456f95e1 Mon Sep 17 00:00:00 2001 From: Eric Poulsen Date: Tue, 12 Dec 2017 10:21:53 -0800 Subject: [PATCH] more robust locking tab --- openfixture.scad | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openfixture.scad b/openfixture.scad index a5d53ec..d68b38c 100644 --- a/openfixture.scad +++ b/openfixture.scad @@ -335,6 +335,10 @@ module lock_tab () cube ([tab_length, tab_width, mat_th]); translate ([-tab_length/2, tab_width/2, 0]) cylinder (r = tab_width / 2, h = mat_th, $fn = 20); + translate([0, tab_width / 2]) + linear_extrude (height = mat_th) + polygon([[0,0], [-tab_length/2 - tab_width /2, 0], [0,tab_length * 2], [0,0]]); + } module head_base ()