summaryrefslogtreecommitdiff
path: root/Filamenthalter/Filamenthalter.scad
diff options
context:
space:
mode:
Diffstat (limited to 'Filamenthalter/Filamenthalter.scad')
-rw-r--r--Filamenthalter/Filamenthalter.scad9
1 files changed, 5 insertions, 4 deletions
diff --git a/Filamenthalter/Filamenthalter.scad b/Filamenthalter/Filamenthalter.scad
index 0930b1e..2c85ba6 100644
--- a/Filamenthalter/Filamenthalter.scad
+++ b/Filamenthalter/Filamenthalter.scad
@@ -1,5 +1,6 @@
r = 29/2;
-d = 115;
+rDick = 35/2;
+d = 110;
Rand = 5;
dSchraube = 11;
dSchraubenKopf = 10;
@@ -11,11 +12,11 @@ Teil = "beide";
module Stab() {
difference() {
union() {
- cylinder(r=r+Rand, h=Rand);
+ cylinder(r=rDick+Rand, h=Rand);
translate([0,0,Rand+d])
cylinder(r=r+Rand, h=Rand);
translate([0,0,Rand])
- cylinder(r=r, h=d+Rand+dNut);
+ cylinder(r1=rDick, r2=r, h=d+Rand+dNut);
}
translate([0,0,-1])
cylinder(r=dSchraube/2, h=d+2*Rand+3);
@@ -39,7 +40,7 @@ if (Teil == "Stab") {
} else if (Teil == "Deckel") {
Deckel();
} else if (Teil == "beide") {
- translate([2*r+3*Rand,0,0])
+ translate([r+rDick+3*Rand,0,0])
Stab();
Deckel();
}