From 7d88b8dd67abeb8e15b19d812c5c4e6bc3bb086d Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 24 Jul 2016 00:56:03 +0100 Subject: [PATCH] earring-stand: abolish front_hex_x_fudge --- earring-stand.scad | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/earring-stand.scad b/earring-stand.scad index 2894be1..9818dce 100644 --- a/earring-stand.scad +++ b/earring-stand.scad @@ -10,7 +10,6 @@ front_thick = 2.4; front_hex_stride = 13; front_hex_dia = 10; -front_hex_x_fudge = 0.05; front_hex_y_fudge = -0.1; front_surround_lr =3; @@ -256,10 +255,10 @@ module FrontPattern(){ difference(){ square([front_width, totalh]); - for (xi=[ 0 : 10 ]) { - translate([xi * xstride + - front_surround_lr + - front_hex_dia*front_hex_x_fudge, 0]) { + for (xi=[ -5 : 5 ]) { + translate([front_width/2 + + xi * xstride, + 0]) { for (yi=[ 0 : 10 ]) { echo(yi); translate([0, yi * ystride + -- 2.30.2