From 758c9ed1d07807b5bfafa2bc5aab5c36f11e922b Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 21 Aug 2023 13:36:15 +0100 Subject: [PATCH] flyscreen-wall-spacer: new spacers Signed-off-by: Ian Jackson --- flyscreen-wall-spacer.scad | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/flyscreen-wall-spacer.scad b/flyscreen-wall-spacer.scad index a943b83..e5a8017 100644 --- a/flyscreen-wall-spacer.scad +++ b/flyscreen-wall-spacer.scad @@ -15,6 +15,8 @@ whole_dia = plug_dia + bucket_wall *2; min_spacing = 8; max_spacing = 19; +general_spacer_height = 10; + // calculated module Oval(r, dc) { @@ -66,7 +68,7 @@ module Spacer($inboard_to_wall) { AnySpacer($inboard_to_wall - bracket_th); } -module Spacers() { +module Spacers1() { for (dy = [0, 30]) { translate([0,dy,0]) { Spacer($inboard_to_wall = left_inboard_to_wall); @@ -81,4 +83,12 @@ module Spacers() { MultiSpacer($inboard_to_wall = right_inboard_to_wall); } -Spacers(); +module Spacers2() { + for (dy = 30 * [0]) { + echo(dy); + translate([0, dy, 0]) + AnySpacer(general_spacer_height); + } +} + +Spacers2(); -- 2.30.2