Seite erstellt: OpenSCAD für Würfel W6
authorLulu <Lulu@stratum0.org/mediawiki/>
Tue, 21 Jan 2014 13:04:11 +0000 (13:04 +0000)
committerLulu <Lulu@stratum0.org/mediawiki/>
Tue, 21 Jan 2014 13:04:11 +0000 (13:04 +0000)
Gesellschaftsspiel-Replikator%2FW6_V1.mw [new file with mode: 0644]

diff --git a/Gesellschaftsspiel-Replikator%2FW6_V1.mw b/Gesellschaftsspiel-Replikator%2FW6_V1.mw
new file mode 100644 (file)
index 0000000..0088014
--- /dev/null
@@ -0,0 +1,191 @@
+<pre>
+
+// Blindenwürfel
+// Annette Thurow 
+// 2014-01-21 V1
+// License: WTF
+
+Kante=20;
+Ausschnitt=15;
+Kerbe=2;
+Punktpos=Kante/2-Kerbe;
+Punkthoehe=Kerbe;
+Punktbasis=2;
+Punktspitze=0;
+Punktabstand=4;
+
+
+intersection()
+{
+sphere (Kante*0.8);
+MyDice();
+}
+
+module MyDice()
+{
+CutDice();
+AddPoints();
+}
+
+
+module CutDice()
+{
+difference()
+{
+     // Basiswürfel erstellen
+     cube([Kante, Kante, Kante], center=true);
+
+     // Ausschnitt für Einkerbungen erstellen
+     // Seite Z: 1
+
+     color("red") translate ([0,0,Kante/2])  cube([Ausschnitt, Ausschnitt, Kerbe*2],center=true);
+
+     // Seite -Z: 6
+
+    color("green") translate ([0,0,-Kante/2]) cube([Ausschnitt, Ausschnitt, Kerbe*2],center=true);
+
+     // Seite Y: 3
+
+     color("blue")translate ([0,Kante/2,0]) cube([Ausschnitt, Kerbe*2, Ausschnitt],center=true);
+
+     // Seite -Y: 4
+
+    color("orange")translate ([0,-Kante/2,0]) cube([Ausschnitt, Kerbe*2, Ausschnitt],center=true);
+
+     // Seite X: 2
+
+     color("magenta")translate ([Kante/2,0,0]) cube([Kerbe*2, Ausschnitt, Ausschnitt],center=true);
+
+     // Seite -X: 5
+
+     color("cyan") translate ([-Kante/2,0,0]) cube([Kerbe*2, Ausschnitt, Ausschnitt],center=true);
+
+};// End Difference
+}; // End Module
+
+// Punkte hinzufügen
+
+
+module AddPoints(){
+
+// Seite Z: 1
+
+color("red")  
+translate([0,0,Punktpos])  
+cylinder(Punkthoehe,Punktbasis,Punktspitze);     
+
+// Seite -Z: 6
+
+color("green")  
+translate([Punktabstand,0,-Punktpos])  
+rotate ([0,180,0]) 
+cylinder(Punkthoehe,Punktbasis,Punktspitze);
+
+color("green")  
+translate([-Punktabstand,0,-Punktpos])  
+rotate ([0,180,0]) 
+cylinder(Punkthoehe,Punktbasis,Punktspitze);
+
+color("green")  
+translate([Punktabstand,Punktabstand,-Punktpos])  
+rotate ([0,180,0]) 
+cylinder(Punkthoehe,Punktbasis,Punktspitze);
+
+color("green")  
+translate([-Punktabstand,Punktabstand,-Punktpos])  
+rotate ([0,180,0]) 
+cylinder(Punkthoehe,Punktbasis,Punktspitze);
+
+color("green")  
+translate([Punktabstand,-Punktabstand,-Punktpos])  
+rotate ([0,180,0]) 
+cylinder(Punkthoehe,Punktbasis,Punktspitze);
+
+color("green")  
+translate([-Punktabstand,-Punktabstand,-Punktpos])  
+rotate ([0,180,0]) 
+cylinder(Punkthoehe,Punktbasis,Punktspitze);
+
+
+// Seite Y: 3
+
+color("blue")  
+translate([0,Punktpos,0])  
+rotate([-90,0,0])
+cylinder(Punkthoehe,Punktbasis,Punktspitze);    
+
+color("blue")  
+translate([Punktabstand,Punktpos,Punktabstand])  
+rotate([-90,0,0])
+cylinder(Punkthoehe,Punktbasis,Punktspitze);    
+
+color("blue")  
+translate([-Punktabstand,Punktpos,-Punktabstand])  
+rotate([-90,0,0])
+cylinder(Punkthoehe,Punktbasis,Punktspitze);     
+
+// Seite -Y: 4
+
+color("orange")  
+translate([Punktabstand,-Punktpos,Punktabstand])  
+rotate ([90,0,0]) 
+cylinder(Punkthoehe,Punktbasis,Punktspitze);
+
+color("orange")  
+translate([-Punktabstand,-Punktpos,Punktabstand])  
+rotate ([90,0,0]) 
+cylinder(Punkthoehe,Punktbasis,Punktspitze);
+
+color("orange")  
+translate([Punktabstand,-Punktpos,-Punktabstand])  
+rotate ([90,0,0]) 
+cylinder(Punkthoehe,Punktbasis,Punktspitze);
+
+color("orange")  
+translate([-Punktabstand,-Punktpos,-Punktabstand])  
+rotate ([90,0,0]) 
+cylinder(Punkthoehe,Punktbasis,Punktspitze);
+
+
+// Seite X: 2
+
+color("magenta")  
+translate([Punktpos,Punktabstand,-Punktabstand])  
+rotate([0,90,0])
+cylinder(Punkthoehe,Punktbasis,Punktspitze);  
+
+color("magenta")  
+translate([Punktpos,-Punktabstand,Punktabstand])  
+rotate([0,90,0])
+cylinder(Punkthoehe,Punktbasis,Punktspitze);    
+
+// Seite -X: 5
+
+color("cyan")  
+translate([-Punktpos,0,0])  
+rotate([0,-90,0])
+cylinder(Punkthoehe,Punktbasis,Punktspitze);  
+
+color("cyan")  
+translate([-Punktpos,-Punktabstand,-Punktabstand])  
+rotate([0,-90,0])
+cylinder(Punkthoehe,Punktbasis,Punktspitze);  
+
+color("cyan")  
+translate([-Punktpos,Punktabstand,-Punktabstand])  
+rotate([0,-90,0])
+cylinder(Punkthoehe,Punktbasis,Punktspitze);  
+
+color("cyan")  
+translate([-Punktpos,Punktabstand,Punktabstand])  
+rotate([0,-90,0])
+cylinder(Punkthoehe,Punktbasis,Punktspitze);  
+
+color("cyan")  
+translate([-Punktpos,-Punktabstand,Punktabstand])  
+rotate([0,-90,0])
+cylinder(Punkthoehe,Punktbasis,Punktspitze);    
+}
+Seite 2
+
+</pre>
This page took 0.02888 seconds and 4 git commands to generate.