summaryrefslogtreecommitdiff
path: root/Spulenhalterung
diff options
context:
space:
mode:
Diffstat (limited to 'Spulenhalterung')
-rw-r--r--Spulenhalterung/Filamenthalter.scad46
-rw-r--r--Spulenhalterung/Makefile2
2 files changed, 48 insertions, 0 deletions
diff --git a/Spulenhalterung/Filamenthalter.scad b/Spulenhalterung/Filamenthalter.scad
new file mode 100644
index 0000000..2c85ba6
--- /dev/null
+++ b/Spulenhalterung/Filamenthalter.scad
@@ -0,0 +1,46 @@
+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();
+}
diff --git a/Spulenhalterung/Makefile b/Spulenhalterung/Makefile
new file mode 100644
index 0000000..646fb87
--- /dev/null
+++ b/Spulenhalterung/Makefile
@@ -0,0 +1,2 @@
+Spulenhalterung/Filamenthalter-%.stl: Spulenhalterung/Filamenthalter.scad
+ openscad -D '$$fa=$(FA)' -D '$$fs=$(FS)' -D 'Teil="$(lastword $(subst -, ,$(patsubst %.stl,%,$@)))"' --export-format stl -o $@ $<