summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2018-08-31 18:50:17 (UTC)
committer Michael Krelin <hacker@klever.net>2018-08-31 18:50:17 (UTC)
commit75fca0ac3c2b4e9a5d5bb49043abc9bc9e8b599c (patch) (side-by-side diff)
treedb5076e2f711c44871b6089dbadf1f04de6aa818
parentdcbe14bb70c4c83bf8dd50e590c5539be022a7ac (diff)
downloadextrudery-75fca0ac3c2b4e9a5d5bb49043abc9bc9e8b599c.zip
extrudery-75fca0ac3c2b4e9a5d5bb49043abc9bc9e8b599c.tar.gz
extrudery-75fca0ac3c2b4e9a5d5bb49043abc9bc9e8b599c.tar.bz2
spring tensioner split width as a parameter
and conditional label (though probably without the change using empty string would achieve more or less the same results)
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--another.scad29
1 files changed, 16 insertions, 13 deletions
diff --git a/another.scad b/another.scad
index 297c1fc..ed18874 100644
--- a/another.scad
+++ b/another.scad
@@ -38,4 +38,5 @@ module the_extruder(
st_screw_d = 5,
st_thickshell = 8*extrusion_width, st_thinshell = 2*extrusion_width,
+ st_split_w = 4*extrusion_width,
// screw it
@@ -238,5 +239,5 @@ module the_extruder(
hh=body_h-ls_z;
translate([0,0,ls_z])
- mirror([0,1,0]) cube(size=[fsw,longwing+(st_thinshell+st_split_w_tolerance)/2+st_thickshell,body_h-ls_z]);
+ mirror([0,1,0]) cube(size=[fsw,longwing+(st_split_w+st_split_w_tolerance)/2+st_thickshell,body_h-ls_z]);
hhh=ls_z;
translate([0,0,0])
@@ -362,6 +363,6 @@ module the_extruder(
cylinder(d1=st_screw_d+st_screw_d_tolerance,d2=bigd,
h=hf+epsilon, $fn=fnd*bigd);
- translate([0,-(st_thinshell+st_split_w_tolerance)/2,0])
- cube(size=[body_h-ls_z+1,st_thinshell+st_split_w_tolerance,fsw+1]);
+ translate([0,-(st_split_w+st_split_w_tolerance)/2,0])
+ cube(size=[body_h-ls_z+1,st_split_w+st_split_w_tolerance,fsw+1]);
}//translate
translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+hf-epsilon])
@@ -373,10 +374,12 @@ module the_extruder(
label_thickness = 2*layer_height;
label_len = len(label);
- labelspace = [gearbox_d/2-mount_screwhead_d/2-min_xy_shell,longwing-(mount_screwhead_d-st_thinshell-st_split_w_tolerance)/2-2*min_xy_shell-mount_d/2];
- translate([0,0,body_h-label_thickness])
- linear_extrude(height=label_thickness+epsilon,convexity=64)
- translate([-mount_screwhead_d/2-min_xy_shell-labelspace.x/2,-longwing+(st_thinshell+st_split_w_tolerance)/2+min_xy_shell+labelspace.y/2])
- mirror([left?0:1,0])
- text(text=label,size=labelspace.x/label_len,halign="center",valign="center",font="Arial Black");
+ if(label_len) {
+ labelspace = [gearbox_d/2-mount_screwhead_d/2-min_xy_shell,longwing-(mount_screwhead_d-st_split_w-st_split_w_tolerance)/2-2*min_xy_shell];
+ translate([0,0,body_h-label_thickness])
+ linear_extrude(height=label_thickness+epsilon,convexity=64)
+ translate([-mount_screwhead_d/2-min_xy_shell-labelspace.x/2,-longwing+(st_split_w+st_split_w_tolerance)/2+min_xy_shell+labelspace.y/2])
+ mirror([left?0:1,0])
+ text(text=label,size=labelspace.x/label_len,halign="center",valign="center",font="Arial Black");
+ }//if(label_len)
}//difference
@@ -398,9 +401,9 @@ module the_extruder(
sphere(d=spring_d*3/4,$fn=fnd*spring_d*3/4);
l = body_h-ls_z;
- w = st_thinshell;
- hull() translate([0,-st_thinshell/2,0]) mirror([1,0,0]) {
+ w = st_split_w;
+ hull() translate([0,-st_split_w/2,0]) mirror([1,0,0]) {
translate([0,0,w])
- cube(size=[l,st_thinshell,w]);
- cube(size=[l-w,st_thinshell,2*w]);
+ cube(size=[l,st_split_w,w]);
+ cube(size=[l-w,st_split_w,2*w]);
}
}