diff --git a/c3cat-bottle-clip/c3cat-bottle-clip.scad b/c3cat-bottle-clip/c3cat-bottle-clip.scad index f629f0e..ed49767 100644 --- a/c3cat-bottle-clip/c3cat-bottle-clip.scad +++ b/c3cat-bottle-clip/c3cat-bottle-clip.scad @@ -37,7 +37,7 @@ LOGO_FILE = ""; // empty string is catear model FONT = ""; // empty string is for Orbitron font // Format of the bottle clip you want to create. -FORMAT = 0; // [0=Club Mate 50cL, 1=Long Neck as 25cL Club Mate or Fritz-kola, 2=Euroform 2] +FORMAT = 3; // [0=Club Mate 50cL, 1=Long Neck as 25cL Club Mate or Fritz-kola, 2=Euroform 2, 3=Steinie bottles] /* [Render] */ @@ -142,6 +142,16 @@ module bottle_clip_format(name="", font="", logo="", format=0) { rl=22.5, ht=26, width=2.5); + } else if (format == 3) { + // Steinie bottle + bottle_clip( + name=name, + font=font, + logo=logo, + ru=13, + rl=17.5, + ht=13, + width=2.5); } else { assert(false, str("Unknown format ", format, ".")); }