summaryrefslogtreecommitdiff
path: root/Filamenthalter/Filamenthalter.scad
diff options
context:
space:
mode:
authorErich Eckner <erich.eckner.ext@bestsecret.com>2024-10-18 11:53:03 +0200
committerErich Eckner <erich.eckner.ext@bestsecret.com>2024-10-18 11:53:03 +0200
commit5ac14e9289966298d4906b14f05dc4e32cf333ed (patch)
treee442ce914c840fd0104e803a27db4f8af51e1021 /Filamenthalter/Filamenthalter.scad
parent9a6f27d706e14437f1cea140848668fd5620252c (diff)
download3D-5ac14e9289966298d4906b14f05dc4e32cf333ed.tar.xz
Filamenthalter und Spulenhalterung in einen Ordner
Diffstat (limited to 'Filamenthalter/Filamenthalter.scad')
-rw-r--r--Filamenthalter/Filamenthalter.scad46
1 files changed, 0 insertions, 46 deletions
diff --git a/Filamenthalter/Filamenthalter.scad b/Filamenthalter/Filamenthalter.scad
deleted file mode 100644
index 2c85ba6..0000000
--- a/Filamenthalter/Filamenthalter.scad
+++ /dev/null
@@ -1,46 +0,0 @@
-r = 29/2;
-rDick = 35/2;
-d = 110;
-Rand = 5;
-dSchraube = 11;
-dSchraubenKopf = 10;
-dNut = 2;
-eps = 0.1;
-
-Teil = "beide";
-
-module Stab() {
- difference() {
- union() {
- cylinder(r=rDick+Rand, h=Rand);
- translate([0,0,Rand+d])
- cylinder(r=r+Rand, h=Rand);
- translate([0,0,Rand])
- cylinder(r1=rDick, r2=r, h=d+Rand+dNut);
- }
- translate([0,0,-1])
- cylinder(r=dSchraube/2, h=d+2*Rand+3);
- translate([-dSchraubenKopf/2-eps,-dSchraubenKopf/2-eps,d+3*Rand-dSchraubenKopf+1])
- cube(dSchraubenKopf + 2*eps);
- }
-}
-
-module Deckel() {
- difference() {
- cylinder(r=r+Rand, h=Rand+dNut);
- translate([-dSchraubenKopf/2-eps,-dSchraubenKopf/2-eps,-1])
- cube(dSchraubenKopf + 2*eps);
- translate([0,0,Rand])
- cylinder(r=r+2*eps, h=dNut+1);
- }
-}
-
-if (Teil == "Stab") {
- Stab();
-} else if (Teil == "Deckel") {
- Deckel();
-} else if (Teil == "beide") {
- translate([r+rDick+3*Rand,0,0])
- Stab();
- Deckel();
-}