summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <erich.eckner.ext@bestsecret.com>2024-04-26 08:09:08 +0200
committerErich Eckner <erich.eckner.ext@bestsecret.com>2024-04-26 08:09:08 +0200
commit052dfde80d83cffb844826763298045497685f35 (patch)
tree1be4ebdb6b7aed09a172467d6d5aabecf0449a66
parent3b1fad1439484cfa95224bbeb3ad4e8653a332a3 (diff)
download3D-052dfde80d83cffb844826763298045497685f35.tar.xz
Filamenthalter: kleine Verbesserungen
-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();
}