add variant for DIN 6199 ("Steinie") beer bottles as module bottle_clip_steinie(), without logo due to limited height

This commit is contained in:
Roland Hieber 2013-06-07 02:16:52 +02:00
parent edee712666
commit 8d67f6045c
2 changed files with 14 additions and 0 deletions

View file

@ -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:

View file

@ -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: