- union()
- {
- // Kegel erzeugen
- color("red") cylinder(Hoehe,Radius1,Radius2);
-
- // Rand auftragen
- color("blue") cylinder(1,Radius1,Radius1);
- }
-
- // Spitze abschneiden
- translate([0,0,Hoehe/3])
- color("orange")cylinder(Hoehe,Radius1,Radius2);
-
- // Hohlraum abziehen
- color("green") cylinder(Hoehe-1,Radius1-1,Radius2);
-};
-
-// Deckel draufsetzen
-color("black")
-translate ([0,0,Radius1-1])
- cylinder(1,RadiusM,RadiusM);
-
-// Hier Verzierungen auf den Rand anbringen todo
-</pre>
+
+ for(j = [1:m])
+ {
+ rotate([0,0,360/m*j])
+ {
+ translate([Radius1,0,0]) cube ([1,1,Ringhoehe], center=false);
+ }
+}
+
+
+// Quadratische Punkte horizontal
+module QuadratischePunkte(o) // Anzahl der Striche rund herum o=32
+{
+ Strichlaenge2 = 1;
+ for(k = [1:o])
+ {
+ rotate([0,0,360/o*k])
+ {
+ translate([Radius1,0,Ringhoehe/2]) cube ([1,Strichlaenge2,1], center=true);
+ }
+ }
+
+} // end module
+
+}
+</nowiki></pre>