From: Lulu
+// Blindenpöppel +// Annette Thurow +// 2014-01-21 V1 +// License: WTF + +Hoehe=30; +Teiler=3; +Radius1=Hoehe/Teiler; +RadiusM=Hoehe*(Teiler-1)/Teiler/Teiler; + +difference() +{ + 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 +