From 622f47a84dcc117f623ccb0bdb4c11a98d4d8f64 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 26 Aug 2016 20:14:53 +0100 Subject: [PATCH] Revert "flyscreen-handle: wip shorter peg" Actually we are just going to make it narrow at the inside end This reverts commit 4c698635270c942eca2e1dd8cdc1fc753b8bcf54. --- flyscreen-handle.scad | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/flyscreen-handle.scad b/flyscreen-handle.scad index 5937a94..5d8a65f 100644 --- a/flyscreen-handle.scad +++ b/flyscreen-handle.scad @@ -36,7 +36,7 @@ basics_len = 8; overret_hch = 5; -peg_width = 3; +peg_width_slop = 0.5; // calculated @@ -60,8 +60,9 @@ retain_cutout_h = retain_rad * 2 + retain_bend_gap; overret_gaplen = retain_cutout_h / cos(retain_empir_angle); -peg_space_width = retain_stalk_len - - (handle_x0 - retain_mxy[0]) / cos(retain_empir_angle); +peg_width = retain_stalk_len - + (handle_x0 - retain_mxy[0]) / cos(retain_empir_angle) + - peg_width_slop; peg_height = retain_cutout_h - (retain_rad + retain_stalk_h) + retain_pushmore_adj; @@ -138,7 +139,7 @@ module PegSection(delta){ module PegSectionForDemo(delta){ translate(retain_mxy) rotate(retain_empir_angle) - translate([retain_stalk_len - peg_space_width, + translate([retain_stalk_len - peg_width - peg_width_slop/2, retain_stalk_h - retain_pushmore_adj]) PegSection(delta); } -- 2.30.2