X-Git-Url: https://git.rohieb.name/stratum0-wiki.git/blobdiff_plain/a378d7278aa2caa8c636510adec1e8b15c4636ae..d751e34dc3d6d55a050bba7525372b042d62cf3a:/Gesellschaftsspiel-Replikator%2FScrabbleBrett.mw?ds=inline diff --git a/Gesellschaftsspiel-Replikator%2FScrabbleBrett.mw b/Gesellschaftsspiel-Replikator%2FScrabbleBrett.mw index 07666ae46..8b30bbc24 100644 --- a/Gesellschaftsspiel-Replikator%2FScrabbleBrett.mw +++ b/Gesellschaftsspiel-Replikator%2FScrabbleBrett.mw @@ -1,15 +1,19 @@ + +[[Datei:Ein Viertel Scrabble-Brett.PNG|thumb|OpenSCAD Entwurf von einem Scrabble-Brett (ein Viertel)]] +
-// Scrabble Spielbrett -// 2014-05-15 V1.1 +// Scrabble Spielbrett +// (ein Viertel) +// 2014-05-15 V1.2 // by Stratum 0 // License: WTFPL // $fn=20; -Kante = 20; -Kantenbreite = 2; +Kante = 14; +Kantenbreite = 1; Hoehe = 4; Randhoehe = 2; Abstand=0; @@ -17,6 +21,19 @@ Zaehler=1; Viertelfeld=8; + +//Hauptprogramm + +intersection() +{ + ViertelBrett(); + cube ([Kante*(Viertelfeld+0.5), Kante*(Viertelfeld+0.5), Kante*(Viertelfeld+0.5)]); +} + + +module ViertelBrett() +{ + for (i = [1:Viertelfeld]) { for (j = [1:Viertelfeld]) @@ -56,9 +73,9 @@ for (i = [1:Viertelfeld]) } // End For I +} - - // Basisfeld erstellen +// Basisfeld erstellen module Feld(Farbe) { difference() @@ -77,14 +94,14 @@ module Punkte(AnzahlPunkte) { if (AnzahlPunkte==2) { - translate ([Kante/3, Kante/3, Hoehe]) cylinder(Randhoehe/2,2,1); - translate ([Kante/3*2, Kante/3*2, Hoehe]) cylinder(Randhoehe/2,2,1); + translate ([Kante/3, Kante/3, Hoehe-Randhoehe]) cylinder(Randhoehe/2,2,1, center=false); + translate ([Kante/3*2, Kante/3*2, Hoehe-Randhoehe]) cylinder(Randhoehe/2,2,1, center=false); } if (AnzahlPunkte==3) { - translate ([Kante/4, Kante/4, Hoehe]) cylinder(Randhoehe/2,2,1); - translate ([Kante/4*2, Kante/4*2, Hoehe]) cylinder(Randhoehe/2,2,1); - translate ([Kante/4*3, Kante/4*3, Hoehe]) cylinder(Randhoehe/2,2,1); + translate ([Kante/4, Kante/4, Hoehe-Randhoehe]) cylinder(Randhoehe/2,2,1, center=false); + translate ([Kante/4*2, Kante/4*2, Hoehe-Randhoehe]) cylinder(Randhoehe/2,2,1, center=false); + translate ([Kante/4*3, Kante/4*3, Hoehe-Randhoehe]) cylinder(Randhoehe/2,2,1, center=false); } } @@ -94,14 +111,14 @@ module Striche(AnzahlStriche) { if (AnzahlStriche==2) { - translate ([Kante/3, Kante/4, Hoehe]) cube([Randhoehe/2,Kante/2,Randhoehe/2]); - translate ([Kante/3*2, Kante/4, Hoehe]) cube([Randhoehe/2,Kante/2,Randhoehe/2]); + translate ([Kante/3-Kantenbreite/2, Kante/4, Hoehe-Randhoehe]) cube([Randhoehe/2,Kante/2,Randhoehe/2]); + translate ([Kante/3*2-Kantenbreite/2, Kante/4, Hoehe-Randhoehe]) cube([Randhoehe/2,Kante/2,Randhoehe/2]); } if (AnzahlStriche==3) { - translate ([Kante/4, Kante/4, Hoehe]) cube([Randhoehe/2,Kante/2,Randhoehe/2]); - translate ([Kante/4*2, Kante/4, Hoehe]) cube([Randhoehe/2,Kante/2,Randhoehe/2]); - translate ([Kante/4*3, Kante/4, Hoehe]) cube([Randhoehe/2,Kante/2,Randhoehe/2]); + translate ([Kante/4, Kante/4, Hoehe-Randhoehe]) cube([Randhoehe/2,Kante/2,Randhoehe/2]); + translate ([Kante/4*2, Kante/4, Hoehe-Randhoehe]) cube([Randhoehe/2,Kante/2,Randhoehe/2]); + translate ([Kante/4*3, Kante/4, Hoehe-Randhoehe]) cube([Randhoehe/2,Kante/2,Randhoehe/2]); } }