From 9ca3b47b281d0a7827995214b17b621e8cc999e8 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Thu, 2 Apr 2020 12:16:38 -0400 Subject: [PATCH] Made a .3mm error in the side pegs. Was printing weird. Fixed it --- models/three_hole_peg_bar/three_hole_peg_bar.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/three_hole_peg_bar/three_hole_peg_bar.scad b/models/three_hole_peg_bar/three_hole_peg_bar.scad index 6c796d4..fc7201c 100644 --- a/models/three_hole_peg_bar/three_hole_peg_bar.scad +++ b/models/three_hole_peg_bar/three_hole_peg_bar.scad @@ -25,8 +25,8 @@ module rounded_bar (arr = [50, 10, 10], fn = 60) { module animation_peg_bar () { rounded_bar([L, W, H], $fn); translate([0, 0, (CENTER_H / 2) - .5]) round_peg(CENTER_D, CENTER_H); - translate([(SIDE_SPACE / 2), 0, (CENTER_H / 2) + .3 ]) round_peg(CENTER_D, CENTER_H); - translate([-(SIDE_SPACE / 2), 0, (CENTER_H / 2) + .3 ]) round_peg(CENTER_D, CENTER_H); + translate([(SIDE_SPACE / 2), 0, (CENTER_H / 2) ]) round_peg(CENTER_D, CENTER_H); + translate([-(SIDE_SPACE / 2), 0, (CENTER_H / 2) ]) round_peg(CENTER_D, CENTER_H); } module round_peg (D = 6, H = 9) {