author | Michael Krelin <hacker@klever.net> | 2017-02-06 21:19:20 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2017-02-06 21:19:20 (UTC) |
commit | d481811cad040ab887ffb9dca6b41616e842e0ca (patch) (unidiff) | |
tree | 133c43736e214ede19cfa01e4d8b9a2900249ab4 | |
parent | 25836f14f59bdeb216a6fb189b6c4720db518c0d (diff) | |
download | extrudery-d481811cad040ab887ffb9dca6b41616e842e0ca.zip extrudery-d481811cad040ab887ffb9dca6b41616e842e0ca.tar.gz extrudery-d481811cad040ab887ffb9dca6b41616e842e0ca.tar.bz2 |
bore shape as it is
-rw-r--r-- | another.scad | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/another.scad b/another.scad index f78d1b0..d4a3f90 100644 --- a/another.scad +++ b/another.scad | |||
@@ -21,2 +21,3 @@ module the_extruder( | |||
21 | bore_d = 8, bore_l = 17.6, | 21 | bore_d = 8, bore_l = 17.6, |
22 | bore_dd = 7, | ||
22 | // pulley properties | 23 | // pulley properties |
@@ -80,3 +81,2 @@ module the_extruder( | |||
80 | 81 | ||
81 | // vitamins | ||
82 | % if(vitamins) mirrorleft() { | 82 | % if(vitamins) mirrorleft() { |
@@ -87,3 +87,7 @@ module the_extruder( | |||
87 | translate([0,0,protrusion_h]) { | 87 | translate([0,0,protrusion_h]) { |
88 | cylinder(d=bore_d,h=bore_l,$fn=30); | 88 | difference() { |
89 | cylinder(d=bore_d,h=bore_l,$fn=30); | ||
90 | translate([-bore_d/2-1,bore_dd-bore_d/2,-1]) | ||
91 | cube([bore_d+2,bore_d/2,bore_l+2]); | ||
92 | } | ||
89 | translate([0,0,pulley_elevation]) { | 93 | translate([0,0,pulley_elevation]) { |
@@ -105,3 +109,3 @@ module the_extruder( | |||
105 | }//translate protrusion | 109 | }//translate protrusion |
106 | }// vitamins to let | 110 | }//vitamins |
107 | 111 | ||