/* [OpenSCAD] */ use $fn=180; debug=false; /* [Teil] */ Teil = 1; // [1:Kreis, 2:Kranz, 3:Rechen, 4:RechenRand, 5:RechenOben, 6:RechenUnten] Dicke = 1; // [1:0.5:5] module Kreis(h) { linear_extrude(height=h) import(file="./Eurovision-Kreis.svg", center=true); } module Kranz(h) { linear_extrude(height=h) import(file="./Eurovision-Kranz.svg", center=true); } module Rechen(h) { linear_extrude(height=h) import(file="./Eurovision-Rechen.svg", center=true); } module Rechen_Rand(h) { linear_extrude(height=h) import(file="./Franken-Rechen-Rand.svg", center=true); } module Rechen_Oben(h) { linear_extrude(height=h) import(file="./Franken-Rechen-Oben.svg", center=true); } module Rechen_Unten(h) { linear_extrude(height=h) import(file="./Franken-Rechen-Unten.svg", center=true); } if (Teil==1) Kreis(Dicke); if (Teil==2) Kranz(Dicke); if (Teil==3) Rechen(Dicke); if (Teil==4) Rechen_Rand(Dicke); if (Teil==5) Rechen_Oben(Dicke); if (Teil==6) Rechen_Unten(Dicke);