author | Michael Krelin <hacker@klever.net> | 2018-08-23 18:15:50 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2018-08-23 18:15:50 (UTC) |
commit | 005f630a7c6e8d5d2c828b82c0ca5b84811a75a3 (patch) (unidiff) | |
tree | 48f6ba9b08feceb4fdcc45885f178003938eacbe | |
parent | 225e31d9131d894b7eec39b7a883c699f666ab34 (diff) | |
download | extrudery-005f630a7c6e8d5d2c828b82c0ca5b84811a75a3.zip extrudery-005f630a7c6e8d5d2c828b82c0ca5b84811a75a3.tar.gz extrudery-005f630a7c6e8d5d2c828b82c0ca5b84811a75a3.tar.bz2 |
add split tolerance
-rw-r--r-- | another.scad | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/another.scad b/another.scad index 8d9d22c..b1cbdeb 100644 --- a/another.scad +++ b/another.scad | |||
@@ -64,2 +64,3 @@ module the_extruder( | |||
64 | st_screw_d_tolerance=.5, | 64 | st_screw_d_tolerance=.5, |
65 | st_split_w_tolerance = .3, | ||
65 | 66 | ||
@@ -239,4 +240,4 @@ module the_extruder( | |||
239 | hh=body_h-ls_z; | 240 | hh=body_h-ls_z; |
240 | translate([0,0,ls_z-lever_thickness/2]) | 241 | translate([0,0,ls_z]) |
241 | mirror([0,1,0]) cube(size=[fsw,longwing-hh+lever_thickness/sqrt(2),hh+lever_thickness/2]); | 242 | mirror([0,1,0]) cube(size=[fsw,longwing+(st_thinshell+st_split_w_tolerance)/2+st_thickshell,body_h-ls_z]); |
242 | hhh=ls_z; | 243 | hhh=ls_z; |
@@ -256,5 +257,8 @@ module the_extruder( | |||
256 | hf = (bigd-st_screw_d-st_screw_d_tolerance)/2; | 257 | hf = (bigd-st_screw_d-st_screw_d_tolerance)/2; |
257 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell-epsilon]) | 258 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell-epsilon]) { |
258 | cylinder(d1=st_screw_d+st_screw_d_tolerance,d2=bigd, | 259 | cylinder(d1=st_screw_d+st_screw_d_tolerance,d2=bigd, |
259 | h=hf+epsilon, $fn=fnd*bigd); | 260 | h=hf+epsilon, $fn=fnd*bigd); |
261 | translate([0,-(st_thinshell+st_split_w_tolerance)/2,0]) | ||
262 | cube(size=[body_h-ls_z+1,st_thinshell+st_split_w_tolerance,fsw+1]); | ||
263 | } | ||
260 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+hf-epsilon]) | 264 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+hf-epsilon]) |