From 1ba4bf9ceaed1523378d5eca38b4ba2f0365f23d Mon Sep 17 00:00:00 2001 From: Golfleur <96846111+Golfleur@users.noreply.github.com> Date: Fri, 21 Oct 2022 16:28:03 -0400 Subject: [PATCH] Update x-carriage.scad The filament hole doe snot completely pass trhourgh the surface. (changed the trabslate from 0 to -5) --- Printed-Parts/SCAD/x-carriage.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Printed-Parts/SCAD/x-carriage.scad b/Printed-Parts/SCAD/x-carriage.scad index 561ce30..1d2e886 100644 --- a/Printed-Parts/SCAD/x-carriage.scad +++ b/Printed-Parts/SCAD/x-carriage.scad @@ -206,7 +206,7 @@ module final_cutout() { union() { - translate([-14.199,9.05,0]) rotate([-5,0,22.5]) cylinder(r=1.62, h=40, $fn=8); + translate([-14.199,9.05,-5]) rotate([-5,0,22.5]) cylinder(r=1.62, h=40, $fn=8); translate([-14.5,9.7,8]) rotate([-5,0,22.5]) cylinder(r=1.62,r2=3, h=8, $fn=8); } }