summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2018-08-23 18:16:32 (UTC)
committer Michael Krelin <hacker@klever.net>2018-08-23 18:16:32 (UTC)
commit9b29b0901630b818bda37481184d12b27042d36d (patch) (side-by-side diff)
treee624923b6ce35c5f72e9a8a4d71334ec0b1f2b7c
parent005f630a7c6e8d5d2c828b82c0ca5b84811a75a3 (diff)
downloadextrudery-9b29b0901630b818bda37481184d12b27042d36d.zip
extrudery-9b29b0901630b818bda37481184d12b27042d36d.tar.gz
extrudery-9b29b0901630b818bda37481184d12b27042d36d.tar.bz2
springpad: add protrusion/indicator
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--another.scad12
1 files changed, 10 insertions, 2 deletions
diff --git a/another.scad b/another.scad
index b1cbdeb..cc3194e 100644
--- a/another.scad
+++ b/another.scad
@@ -418,2 +418,3 @@ module the_extruder(
hf = (bigd-smalld)/2;
+ h = hf*3.5;
translate([-gearbox_d/2+st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+1,-longwing,filament_elevation])
@@ -423,5 +424,12 @@ module the_extruder(
translate([0,0,hf-epsilon])
- cylinder(d=bigd,h=hf*2,$fn=fnd*bigd);
- translate([0,0,3*hf])
+ cylinder(d=bigd,h=h-hf,$fn=fnd*bigd);
+ translate([0,0,h])
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]) {
+ translate([0,0,w])
+ cube(size=[l,st_thinshell,w]);
+ cube(size=[l-w,st_thinshell,2*w]);
+ }
}