From dc12205bb89b0fce9ef70b5b299bcea4dc670eb3 Mon Sep 17 00:00:00 2001 From: Chuck Burgess Date: Fri, 5 Jan 2018 20:09:56 -0700 Subject: [PATCH] Narrowing Belt Gap R ### Description The belt gap R is a little too wide allowing the belt to slip off of the carriage part. ### Proposed Changes - change the cube on the bottom of the belt gap increasing the Y from 7.5 to 8 to make the belt gap more narrow (1.95mm gap) --- 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 2e1c03a..0f085ac 100644 --- a/Printed-Parts/scad/x-carriage.scad +++ b/Printed-Parts/scad/x-carriage.scad @@ -48,7 +48,7 @@ module x_carriage_base() union() { translate([2,26.9,0]) cube([10,6.2,15]); - translate([2,24-2.3-4.5,0]) cube([7.5,7.5,15]); + translate([2,24-2.3-4.5,0]) cube([7.5,7.8,15]); translate([-0.5,27,0]) cube([8,7,2]); } translate([-3,25,5.5]) rotate([0,0,-40]) cube([5,5.5,10]);