Browse Source

Halter anders

Volker Philippent 1 year ago
parent
commit
17fdb0f5b0
1 changed files with 8 additions and 4 deletions
  1. 8 4
      Walimex-Fokushilfe.scad

+ 8 - 4
Walimex-Fokushilfe.scad

@@ -1,9 +1,9 @@
-$fn=120;
+$fn=180;
 
 D_Aussen=98;
 D_Spiegel=43;
 D_Linse=90;
-Dicke=2;
+Dicke=1.5;
 
 difference() {
   union(){
@@ -24,8 +24,12 @@ difference() {
       cylinder(d2=D_Aussen-2, d1=D_Aussen, h=1, center=true);
     }
   }
-  translate([-60,10,10]) cube([120,60,60]);
-  mirror([0,1,0]) translate([-60,10,10]) cube([120,60,60]);
+  #rotate([0,0,60]) translate([0,0,10]) for(i=[0:360/3:359]) rotate([0,0,i]) union() {
+    for(j=[-40:360/$fn:+40]) rotate([0,0,j]) hull() {
+      rotate([0,0,+360/$fn/2]) cube([60,0.001,20]);
+      rotate([0,0,-360/$fn/2]) cube([60,0.001,20]);;
+    }
+  }
 }