Added Z carriage drills for tougher assembly

pull/55/head
Carlos Garcia Saura 2015-09-26 01:01:08 +02:00
parent 5a31d8ac6b
commit c90aa87a41
1 changed files with 6 additions and 1 deletions

View File

@ -255,6 +255,11 @@ module Cyclone_Z_carriage(z_thread_rod_length=120, with_extra_parts=false, explo
if(tool==spindle_holder) if(tool==spindle_holder)
{//Substract dremel holder {//Substract dremel holder
translate([(wall_height/2+Z_smooth_rods_sep/2)/2,Z_threaded_pos+51,25])cube([200,80,51], center=true); translate([(wall_height/2+Z_smooth_rods_sep/2)/2,Z_threaded_pos+51,25])cube([200,80,51], center=true);
} else {// Additional drills next to the linear bearings
translate([wall_height/2-Z_smooth_rods_sep/2,Z_threaded_pos+14,0])
cylinder(r=4.5/2,h=50,center=true);
translate([wall_height/2+Z_smooth_rods_sep/2,Z_threaded_pos+14,0])
cylinder(r=4.5/2,h=50,center=true);
} }
} }
} }