From 8d67f6045cd279a094f6b73ad4b52cd940e87f9a Mon Sep 17 00:00:00 2001 From: Roland Hieber Date: Fri, 7 Jun 2013 02:16:52 +0200 Subject: [PATCH] add variant for DIN 6199 ("Steinie") beer bottles as module bottle_clip_steinie(), without logo due to limited height --- bottle-clip.scad | 11 +++++++++++ examples.scad | 3 +++ 2 files changed, 14 insertions(+) diff --git a/bottle-clip.scad b/bottle-clip.scad index a1107db..fc3d043 100644 --- a/bottle-clip.scad +++ b/bottle-clip.scad @@ -83,4 +83,15 @@ module bottle_clip_longneck(name="", width=2.5, font=font); } +/** + * Creates one instance of a bottle clip name tag suitable for 0.33l DIN 6199 + * beer bottles (also known as "Steinie", "Stubbi", "Knolle", etc.). Because of + * reasons, there is no logo, but all other parameters are passed to the module + * bottle_clip(), see there for their documentation. + */ +module bottle_clip_steinie(name="", width=2.5, font="write/orbitron.dxf") { + bottle_clip(name=name, ru=13, rl=17.5, ht=13, width=width, logo="", + font=font); +} + // vim: set noet ts=2 sw=2 tw=80: diff --git a/examples.scad b/examples.scad index c6ed30d..c71383c 100644 --- a/examples.scad +++ b/examples.scad @@ -27,4 +27,7 @@ bottle_clip(name="Zero Cool"); // Now for something completely different: Longneck bottles. //bottle_clip_longneck(name="Tom Anderson", logo="thing-logos/glider.dxf"); +// ...or DIN 6199 ("Steinie") beer bottles. Note that these have no logo. +//bottle_clip_steinie(name="ohbier"); + // vim: set noet ts=2 sw=2 tw=80: