From 3f94408a44c6ba91d240e48fa09ead16f7bc8256 Mon Sep 17 00:00:00 2001 From: Petr Ledvina Date: Thu, 9 Dec 2021 18:44:48 +0100 Subject: [PATCH] Space for screws is slightly misplaced Space for extruder screws in X-Carriage is off by .5mm. This is mostly cosmetic problem, but fix is trivial. --- Printed-Parts/SCAD/x-carriage.scad | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Printed-Parts/SCAD/x-carriage.scad b/Printed-Parts/SCAD/x-carriage.scad index 561ce30..991c3b6 100644 --- a/Printed-Parts/SCAD/x-carriage.scad +++ b/Printed-Parts/SCAD/x-carriage.scad @@ -381,11 +381,11 @@ module x_carriage() // hold together screws clearance - translate([-4.5,25.5,-1]) cylinder(r1=2.2,r2=1.5, h=10, $fn=25); - translate([-28.5,25.5,-1]) cylinder(r1=2.2,r2=1.5, h=10, $fn=25); - translate([-4.5,25.5,-1]) cylinder(r2=2,r1=3,h=3, $fn=25); - translate([-28.5,25.5,-1]) cylinder(r2=2,r1=3,h=3, $fn=25); - + for (_x = [-5,-29]) + translate([_x,25.5,-1]) { + cylinder(r1=2.2,r2=1.5, h=10, $fn=25); + cylinder(r2=2,r1=3,h=3, $fn=25); + } translate([0,-0.5,0]) left_belt_cut(); translate([0,0.5,0]) right_belt_cut();