From fa70642efaecd188a806bfb932cd4ed0732ddc25 Mon Sep 17 00:00:00 2001 From: Arne Durr Date: Sat, 29 Nov 2014 23:04:59 +0100 Subject: [PATCH] Fixed small render error Replaced scale by linear_extrude --- Hardware/CYCLONE_2/Source_files/libs/standard_parts.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hardware/CYCLONE_2/Source_files/libs/standard_parts.scad b/Hardware/CYCLONE_2/Source_files/libs/standard_parts.scad index 0e8d699..be9dd5a 100644 --- a/Hardware/CYCLONE_2/Source_files/libs/standard_parts.scad +++ b/Hardware/CYCLONE_2/Source_files/libs/standard_parts.scad @@ -160,7 +160,7 @@ module stepperMotor_mount(height, tolerance=0.15, slide_distance=6, sideLen=42.2 else translate([0,0,-25]) bcube([sideLen+2*tolerance,sideLen+slide_distance+2*tolerance,50],cr=3,cres=10); } - scale([1,1,height]) { + linear_extrude(height=height) { stepper_motor_mount(nema_standard=17, slide_distance=slide_distance, mochup=false); } }